Home
last modified time | relevance | path

Searched refs:authMethod (Results 1 – 11 of 11) sorted by relevance

/external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/
DNativeCrypto.java35 String authMethod) throws CertificateException; in verifyCertificateChain() argument
DOpenSSLSocketImpl.java98 public void verifyCertificateChain(byte[][] bytes, String authMethod) in verifyCertificateChain() argument
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/
DNativeCrypto.java34 String authMethod) throws CertificateException; in verifyCertificateChain() argument
DOpenSSLSocketImpl.java98 public void verifyCertificateChain(byte[][] bytes, String authMethod) in verifyCertificateChain() argument
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java797 private String authMethod; field in NativeCryptoTest.TestSSLHandshakeCallbacks
801 public void verifyCertificateChain(long[] certChainRefs, String authMethod) in verifyCertificateChain() argument
807 + " authMethod=" + authMethod); in verifyCertificateChain()
810 this.authMethod = authMethod; in verifyCertificateChain()
1130 assertEquals("ECDHE_RSA", clientCallback.authMethod); in test_SSL_do_handshake_normal()
1167 assertEquals("ECDHE_RSA", clientCallback1.authMethod); in test_SSL_do_handshake_reusedSession()
1207 assertEquals("ECDHE_RSA", clientCallback2.authMethod); in test_SSL_do_handshake_reusedSession()
1252 assertEquals("ECDHE_RSA", clientCallback.authMethod); in test_SSL_do_handshake_optional_client_certificate()
1255 assertEquals("ECDHE_RSA", serverCallback.authMethod); in test_SSL_do_handshake_optional_client_certificate()
1364 assertEquals("ECDHE_RSA", clientCallback.authMethod); in test_SSL_do_handshake_with_channel_id_normal()
[all …]
/external/conscrypt/common/src/main/java/org/conscrypt/
DConscryptFileDescriptorSocket.java382 public void verifyCertificateChain(long[] certRefs, String authMethod) in verifyCertificateChain() argument
399 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, this); in verifyCertificateChain()
DConscryptEngine.java1561 public void verifyCertificateChain(long[] certRefs, String authMethod) in verifyCertificateChain() argument
1578 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, this); in verifyCertificateChain()
DNativeCrypto.java1062 void verifyCertificateChain(long[] certificateChainRefs, String authMethod) in verifyCertificateChain() argument
/external/conscrypt/android/src/main/java/org/conscrypt/
DPreKitKatPlatformOpenSSLSocketImplAdapter.java390 public void verifyCertificateChain(byte[][] bytes, String authMethod) in verifyCertificateChain() argument
DKitKatPlatformOpenSSLSocketImplAdapter.java390 public void verifyCertificateChain(byte[][] bytes, String authMethod) in verifyCertificateChain() argument
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp5591 const char *authMethod = SSL_CIPHER_get_kx_name(cipher); in cert_verify_callback() local
5594 ssl, authMethod); in cert_verify_callback()
5595 jstring authMethodString = env->NewStringUTF(authMethod); in cert_verify_callback()