Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for OpenJSSE (0.06 seconds)

  1. okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/OpenJSSEPlatform.kt

    import okhttp3.Protocol
    
    /**
     * Platform using OpenJSSE (https://github.com/openjsse/openjsse) if installed as the first
     * Security Provider.
     *
     * Requires org.openjsse:openjsse >= 1.1.0 on the classpath.
     */
    class OpenJSSEPlatform private constructor() : Platform() {
      private val provider: Provider =
        org.openjsse.net.ssl
          .OpenJSSE()
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  2. build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts

    tasks.withType<Test> {
      useJUnitPlatform()
      jvmArgs("-Dokhttp.platform=$platform")
    
      if (platform == "loom") {
        jvmArgs("-Djdk.tracePinnedThreads=short")
      }
      if (platform == "openjsse") {
        if (testJavaVersion > 8) {
          throw GradleException("OpenJSSE is only supported on Java 8")
        }
      }
    
      val javaToolchains = project.extensions.getByType<JavaToolchainService>()
      javaLauncher.set(javaToolchains.launcherFor {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 07:16:57 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

              if (!OpenJSSEPlatform.isSupported) {
                System.err.println("Warning: OpenJSSE not available")
              }
    
              if (System.getProperty("javax.net.debug") == null) {
                System.setProperty("javax.net.debug", "")
              }
    
              Security.insertProviderAt(OpenJSSE(), 1)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 15.5K bytes
    - Click Count (1)
  4. android-test/build.gradle.kts

      testImplementation(libs.conscrypt.openjdk)
      testImplementation(libs.junit.jupiter.engine)
      testImplementation(libs.junit.vintage.engine)
    
      androidTestImplementation(projects.okhttpTestingSupport) {
        exclude("org.openjsse", "openjsse")
        exclude("org.conscrypt", "conscrypt-openjdk-uber")
        exclude("software.amazon.cryptools", "AmazonCorrettoCryptoProvider")
      }
      androidTestImplementation(libs.assertk)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 3.8K bytes
    - Click Count (2)
  5. okhttp/build.gradle.kts

            implementation(projects.okhttpUrlconnection)
    
            if (platform == "conscrypt") {
              implementation(libs.conscrypt.openjdk)
            } else if (platform == "openjsse") {
              implementation(libs.openjsse)
            }
          }
        }
    
        if (testJavaVersion >= 17) {
          val androidHostTest by getting {
            dependencies {
              implementation(libs.androidx.junit)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  6. .github/workflows/build.yml

      providers:
        runs-on: ubuntu-latest
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'providers')
        strategy:
          matrix:
            include:
              - provider: openjsse
                java-version: 8
              - provider: bouncycastle
                java-version: 21
              - provider: corretto
                java-version: 21
              - provider: conscrypt
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 16:19:02 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  7. gradle/libs.versions.toml

    mockserver-client = { module = "org.mock-server:mockserver-client-java-no-dependencies", version.ref = "mockserver-client" }
    native-image-svm = { module = "org.graalvm.nativeimage:svm", version.ref = "graalvm" }
    openjsse = { module = "org.openjsse:openjsse", version.ref = "openjsse" }
    playservices-safetynet = { module = "com.google.android.gms:play-services-safetynet", version.ref = "playservices-safetynet" }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 31 22:01:48 GMT 2026
    - 12K bytes
    - Click Count (0)
  8. okhttp-testing-support/build.gradle.kts

      api(projects.okhttpTls)
      api(libs.assertk)
      api(libs.bouncycastle.bcprov)
      implementation(libs.bouncycastle.bcpkix)
      implementation(libs.bouncycastle.bctls)
      api(libs.conscrypt.openjdk)
      api(libs.openjsse)
    
      api(libs.junit.jupiter.engine)
    
      // This runs Corretto on macOS (aarch64) and Linux (x86_64). We don't test Corretto on other
      // operating systems or architectures.
      api(
        variantOf(libs.amazon.corretto) {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 1.3K bytes
    - Click Count (1)
Back to Top