Home
last modified time | relevance | path

Searched refs:SSL_set_tlsext_host_name (Results 1 – 25 of 25) sorted by relevance

/external/curl/lib/vtls/
Dmesalink.c197 if(SSL_set_tlsext_host_name(BACKEND->handle, hostname) != SSL_SUCCESS) { in mesalink_connect_step1()
214 SSL_set_tlsext_host_name(BACKEND->handle, "localhost"); in mesalink_connect_step1()
Dopenssl.c2729 !SSL_set_tlsext_host_name(BACKEND->handle, hostname)) in ossl_connect_step1()
/external/honggfuzz/examples/openssl/
Dclient.c526 SSL_set_tlsext_host_name(client, "localhost"); in LLVMFuzzerTestOneInput()
/external/libcups/cups/
Dtls-boringssl.c391 SSL_set_tlsext_host_name(http->tls, hostname); in _httpTLSStart()
/external/libevent/sample/
Dhttps-client.c391 SSL_set_tlsext_host_name(ssl, host); in main()
/external/boringssl/src/ssl/test/
Dfuzzer.h307 SSL_set_tlsext_host_name(ssl.get(), "hostname"); in TestOneInput()
Dtest_config.cc1543 !SSL_set_tlsext_host_name(ssl.get(), host_name.c_str())) { in NewSSL()
/external/boringssl/src/tool/
Dclient.cc257 SSL_set_tlsext_host_name(ssl.get(), args_map["-server-name"].c_str()); in DoConnection()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java367 NativeCrypto.SSL_set_tlsext_host_name(ssl, this, hostname); in initialize()
DNativeCrypto.java1124 static native void SSL_set_tlsext_host_name(long ssl, NativeSsl ssl_holder, String hostname) in SSL_set_tlsext_host_name() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java368 NativeCrypto.SSL_set_tlsext_host_name(ssl, this, hostname); in initialize()
DNativeCrypto.java1164 static native void SSL_set_tlsext_host_name(long ssl, NativeSsl ssl_holder, String hostname) in SSL_set_tlsext_host_name() method in NativeCrypto
/external/boringssl/src/include/openssl/
Dssl.h2601 OPENSSL_EXPORT int SSL_set_tlsext_host_name(SSL *ssl, const char *name);
4632 #define SSL_set_tlsext_host_name SSL_set_tlsext_host_name macro
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java1912 NativeCrypto.SSL_set_tlsext_host_name(NULL, null, null); in SSL_set_tlsext_host_name_withNullSslShouldThrow()
1921 NativeCrypto.SSL_set_tlsext_host_name(s, null, null); in SSL_set_tlsext_host_name_withNullHostnameShouldThrow()
1936 NativeCrypto.SSL_set_tlsext_host_name(s, null, new String(longHostname)); in SSL_set_tlsext_host_name_withTooLongHostnameShouldThrow()
1950 NativeCrypto.SSL_set_tlsext_host_name(s, null, hostname); in test_SSL_set_tlsext_host_name()
1963 NativeCrypto.SSL_set_tlsext_host_name(s, null, hostname); in test_SSL_set_tlsext_host_name()
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java1920 NativeCrypto.SSL_set_tlsext_host_name(NULL, null, null); in SSL_set_tlsext_host_name_withNullSslShouldThrow()
1929 NativeCrypto.SSL_set_tlsext_host_name(s, null, null); in SSL_set_tlsext_host_name_withNullHostnameShouldThrow()
1944 NativeCrypto.SSL_set_tlsext_host_name(s, null, new String(longHostname)); in SSL_set_tlsext_host_name_withTooLongHostnameShouldThrow()
1958 NativeCrypto.SSL_set_tlsext_host_name(s, null, hostname); in test_SSL_set_tlsext_host_name()
1971 NativeCrypto.SSL_set_tlsext_host_name(s, null, hostname); in test_SSL_set_tlsext_host_name()
/external/boringssl/src/
DPORTING.md277 `SSL_CTRL_SET_TLSEXT_HOSTNAME` | `SSL_set_tlsext_host_name`
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list297 SSL_set_tlsext_host_name
DBoringSSL-GRPC.podspec1849 '#define SSL_set_tlsext_host_name GRPC_SHADOW_SSL_set_tlsext_host_name',
/external/grpc-grpc/src/core/tsi/
Dssl_transport_security.cc1355 if (!SSL_set_tlsext_host_name(ssl, server_name_indication)) { in create_tsi_ssl_handshaker()
Dgrpc_shadow_boringssl.h325 #define SSL_set_tlsext_host_name GRPC_SHADOW_SSL_set_tlsext_host_name macro
/external/boringssl/src/ssl/
Dssl_lib.cc2059 int SSL_set_tlsext_host_name(SSL *ssl, const char *name) { in SSL_set_tlsext_host_name() function
Dssl_test.cc1575 !SSL_set_tlsext_host_name(client.get(), config.servername.c_str())) { in ConnectClientAndServer()
/external/python/cpython2/Modules/
D_ssl.c644 SSL_set_tlsext_host_name(self->ssl, server_hostname); in newPySSLSocket()
/external/python/cpython3/Modules/
D_ssl.c856 if (!SSL_set_tlsext_host_name(self->ssl, server_hostname)) { in _ssl_configure_hostname()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc7448 int ret = SSL_set_tlsext_host_name(ssl, hostnameChars.c_str()); in NativeCrypto_SSL_set_tlsext_host_name()
10153 CONSCRYPT_NATIVE_METHOD(SSL_set_tlsext_host_name, "(J" REF_SSL "Ljava/lang/String;)V"),