Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ConscryptPlatform (0.43 sec)

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

          val preferredProvider = Security.getProviders()[0].name
          return "BC" == preferredProvider
        }
    
      actual fun findPlatform(): Platform {
        if (isConscryptPreferred) {
          val conscrypt = ConscryptPlatform.buildIfSupported()
    
          if (conscrypt != null) {
            return conscrypt
          }
        }
    
        if (isBouncyCastlePreferred) {
          val bc = BouncyCastlePlatform.buildIfSupported()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu May 22 14:39:30 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top