- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for withCertificateChainCleaner (0.1 sec)
-
okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt
*/ fun findMatchingPins(hostname: String): List<Pin> = pins.filterList { matchesHostname(hostname) } /** Returns a certificate pinner that uses `certificateChainCleaner`. */ internal fun withCertificateChainCleaner(certificateChainCleaner: CertificateChainCleaner): CertificatePinner { return if (this.certificateChainCleaner == certificateChainCleaner) { this } else {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 14.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt
this.certificateChainCleaner = builder.certificateChainCleaner!! this.x509TrustManager = builder.x509TrustManagerOrNull!! this.certificatePinner = builder.certificatePinner .withCertificateChainCleaner(certificateChainCleaner!!) } else { this.x509TrustManager = Platform.get().platformTrustManager() this.sslSocketFactoryOrNull = Platform.get().newSslSocketFactory(x509TrustManager!!)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:21:33 UTC 2024 - 52K bytes - Viewed (0)