Searched refs:authMethod (Results 1 – 5 of 5) sorted by relevance
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 719 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/ |
D | OpenSSLEngineImpl.java | 646 String authMethod) throws CertificateException { in verifyCertificateChain() argument 666 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, getPeerHost()); in verifyCertificateChain()
|
D | OpenSSLSocketImpl.java | 529 public void verifyCertificateChain(long sslSessionNativePtr, long[] certRefs, String authMethod) in verifyCertificateChain() argument 550 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, getHostname()); in verifyCertificateChain()
|
D | NativeCrypto.java | 1275 String authMethod) throws CertificateException; in verifyCertificateChain() argument
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 6805 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()
|