Home
last modified time | relevance | path

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

/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java719 public String authMethod; field in NativeCryptoTest.TestSSLHandshakeCallbacks
724 String authMethod) throws CertificateException { in verifyCertificateChain() argument
731 + " authMethod=" + authMethod); in verifyCertificateChain()
734 this.authMethod = authMethod; in verifyCertificateChain()
1025 assertEquals("RSA", clientCallback.authMethod); in test_SSL_do_handshake_normal()
1065 assertEquals("RSA", clientCallback.authMethod); in test_SSL_do_handshake_optional_client_certificate()
1069 assertEquals("RSA", serverCallback.authMethod); in test_SSL_do_handshake_optional_client_certificate()
1250 assertEquals("ECDHE_RSA", clientCallback.authMethod); in test_SSL_do_handshake_with_channel_id_normal()
1283 assertEquals("ECDHE_RSA", clientCallback.authMethod); in test_SSL_do_handshake_with_channel_id_not_supported_by_server()
1316 assertEquals("ECDHE_RSA", clientCallback.authMethod); in test_SSL_do_handshake_with_channel_id_not_enabled_by_client()
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLEngineImpl.java646 String authMethod) throws CertificateException { in verifyCertificateChain() argument
666 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, getPeerHost()); in verifyCertificateChain()
DOpenSSLSocketImpl.java529 public void verifyCertificateChain(long sslSessionNativePtr, long[] certRefs, String authMethod) in verifyCertificateChain() argument
550 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, getHostname()); in verifyCertificateChain()
DNativeCrypto.java1275 String authMethod) throws CertificateException; in verifyCertificateChain() argument
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp6805 const char* authMethod = SSL_authentication_method(ssl); in cert_verify_callback() local
6807 ssl, authMethod); in cert_verify_callback()
6808 jstring authMethodString = env->NewStringUTF(authMethod); in cert_verify_callback()