Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for peerCertificates (0.11 sec)

  1. okhttp/api/okhttp.api

    	public fun hashCode ()I
    	public final fun localCertificates ()Ljava/util/List;
    	public final fun localPrincipal ()Ljava/security/Principal;
    	public final fun peerCertificates ()Ljava/util/List;
    	public final fun peerPrincipal ()Ljava/security/Principal;
    	public final fun tlsVersion ()Lokhttp3/TlsVersion;
    	public fun toString ()Ljava/lang/String;
    }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        val response1 = client.newCall(request1).execute()
        val certificatePinnerBuilder = CertificatePinner.Builder()
        for (certificate in response1.handshake!!.peerCertificates) {
          certificatePinnerBuilder.add(
            server.hostName,
            pin(certificate),
          )
        }
        response1.body.close()
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg crypto/tls, type ConnectionState struct, NegotiatedProtocol string
    pkg crypto/tls, type ConnectionState struct, NegotiatedProtocolIsMutual bool
    pkg crypto/tls, type ConnectionState struct, PeerCertificates []*x509.Certificate
    pkg crypto/tls, type ConnectionState struct, ServerName string
    pkg crypto/tls, type ConnectionState struct, VerifiedChains [][]*x509.Certificate
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top