Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CertificateChainCleaner (0.32 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      val hostnameVerifier: HostnameVerifier = builder.hostnameVerifier
    
      @get:JvmName("certificatePinner")
      val certificatePinner: CertificatePinner
    
      @get:JvmName("certificateChainCleaner")
      val certificateChainCleaner: CertificateChainCleaner?
    
      /**
       * Default call timeout (in milliseconds). By default there is no timeout for complete calls, but
       * there is for the connect, write, and read actions within a call.
    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)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

            Handshake(
              unverifiedHandshake.tlsVersion,
              unverifiedHandshake.cipherSuite,
              unverifiedHandshake.localCertificates,
            ) {
              certificatePinner.certificateChainCleaner!!.clean(
                unverifiedHandshake.peerCertificates,
                address.url.host,
              )
            }
          this.handshake = handshake
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public final fun authenticator ()Lokhttp3/Authenticator;
    	public final fun cache ()Lokhttp3/Cache;
    	public final fun callTimeoutMillis ()I
    	public final fun certificateChainCleaner ()Lokhttp3/internal/tls/CertificateChainCleaner;
    	public final fun certificatePinner ()Lokhttp3/CertificatePinner;
    	public final fun connectTimeoutMillis ()I
    	public final fun connectionPool ()Lokhttp3/ConnectionPool;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
Back to top