Home
last modified time | relevance | path

Searched refs:SSL_OP_NO_TLSv1 (Results 1 – 10 of 10) sorted by relevance

/external/conscrypt/constants/src/gen/cpp/
Dgenerate_constants.cc70 CONST(SSL_OP_NO_TLSv1); in main()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeCrypto.java945 long optionsToSet = (NativeConstants.SSL_OP_NO_SSLv3 | NativeConstants.SSL_OP_NO_TLSv1 in setEnabledProtocols()
950 optionsToSet &= ~NativeConstants.SSL_OP_NO_TLSv1; in setEnabledProtocols()
951 optionsToClear |= NativeConstants.SSL_OP_NO_TLSv1; in setEnabledProtocols()
/external/boringssl/src/ssl/
Dssl_versions.cc199 {TLS1_VERSION, SSL_OP_NO_TLSv1},
/external/curl/lib/vtls/
Dopenssl.c1992 *ctx_options |= SSL_OP_NO_TLSv1; in set_ssl_version_min_max()
2212 ctx_options |= SSL_OP_NO_TLSv1; in ossl_connect_step1()
2240 ctx_options |= SSL_OP_NO_TLSv1; in ossl_connect_step1()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c2465 #ifdef SSL_OP_NO_TLSv1 in tls_set_conn_flags()
2467 SSL_set_options(ssl, SSL_OP_NO_TLSv1); in tls_set_conn_flags()
2469 SSL_clear_options(ssl, SSL_OP_NO_TLSv1); in tls_set_conn_flags()
2527 SSL_set_options(ssl, SSL_OP_NO_TLSv1); in tls_set_conn_flags()
/external/boringssl/src/include/openssl/
Dssl.h648 #define SSL_OP_NO_TLSv1 0x04000000L macro
652 #define SSL_OP_NO_DTLSv1 SSL_OP_NO_TLSv1
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java22 import static org.conscrypt.NativeConstants.SSL_OP_NO_TLSv1;
387 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TLSv1) == 0); in test_SSL_new()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc2006 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1); in DoConnection()
/external/python/cpython2/Modules/
D_ssl.c4272 PyModule_AddIntConstant(m, "OP_NO_TLSv1", SSL_OP_NO_TLSv1); in init_ssl()
/external/python/cpython3/Modules/
D_ssl.c5361 PyModule_AddIntConstant(m, "OP_NO_TLSv1", SSL_OP_NO_TLSv1); in PyInit__ssl()