Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BasicCertificateChainCleaner (0.2 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt

     *
     * This class includes code from [Conscrypt's][Conscrypt] [TrustManagerImpl] and
     * [TrustedCertificateIndex].
     *
     * [Conscrypt]: https://conscrypt.org/
     */
    class BasicCertificateChainCleaner(
      private val trustRootIndex: TrustRootIndex,
    ) : CertificateChainCleaner() {
      /**
       * Returns a cleaned chain for [chain].
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/tls/CertificateChainCleaner.kt

          return Platform.get().buildCertificateChainCleaner(trustManager)
        }
    
        fun get(vararg caCerts: X509Certificate): CertificateChainCleaner {
          return BasicCertificateChainCleaner(BasicTrustRootIndex(*caCerts))
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

    import javax.net.ssl.X509TrustManager
    import okhttp3.OkHttpClient
    import okhttp3.Protocol
    import okhttp3.internal.platform.android.AndroidLog
    import okhttp3.internal.readFieldOrNull
    import okhttp3.internal.tls.BasicCertificateChainCleaner
    import okhttp3.internal.tls.BasicTrustRootIndex
    import okhttp3.internal.tls.CertificateChainCleaner
    import okhttp3.internal.tls.TrustRootIndex
    import okio.Buffer
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. okhttp-android/src/main/baseline-prof.txt

    Lokhttp3/internal/proxy/NullProxySelector;
    Lokhttp3/internal/publicsuffix/PublicSuffixDatabase$Companion;
    Lokhttp3/internal/publicsuffix/PublicSuffixDatabase;
    Lokhttp3/internal/tls/BasicCertificateChainCleaner;
    Lokhttp3/internal/tls/BasicTrustRootIndex;
    Lokhttp3/internal/tls/CertificateChainCleaner;
    Lokhttp3/internal/tls/OkHostnameVerifier;
    Lokhttp3/internal/tls/TrustRootIndex;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
Back to top