Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withCertificateChainCleaner (0.4 sec)

  1. 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 {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 14.2K bytes
    - Viewed (1)
  2. 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!!)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:21:33 GMT 2024
    - 52K bytes
    - Viewed (0)
  3. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/CertificatePinner;->check$okhttp(Ljava/lang/String;Lkotlin/jvm/functions/Function0;)V
    HSPLokhttp3/CertificatePinner;->equals(Ljava/lang/Object;)Z
    HSPLokhttp3/CertificatePinner;->hashCode()I
    HSPLokhttp3/CertificatePinner;->withCertificateChainCleaner$okhttp(Lokhttp3/internal/tls/CertificateChainCleaner;)Lokhttp3/CertificatePinner;
    HSPLokhttp3/CipherSuite$Companion$ORDER_BY_NAME$1;-><init>()V
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
Back to top