Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/
Dssl_versions.cc200 {TLS1_1_VERSION, SSL_OP_NO_TLSv1_1},
211 options &= ~SSL_OP_NO_TLSv1_1; in ssl_get_version_range()
213 options |= SSL_OP_NO_TLSv1_1; in ssl_get_version_range()
/external/conscrypt/constants/src/gen/cpp/
Dgenerate_constants.cc71 CONST(SSL_OP_NO_TLSv1_1); in main()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeCrypto.java946 | NativeConstants.SSL_OP_NO_TLSv1_1 | NativeConstants.SSL_OP_NO_TLSv1_2); in setEnabledProtocols()
953 optionsToSet &= ~NativeConstants.SSL_OP_NO_TLSv1_1; in setEnabledProtocols()
954 optionsToClear |= NativeConstants.SSL_OP_NO_TLSv1_1; in setEnabledProtocols()
/external/libevent/test/
Dregress_ssl.c179 #ifdef SSL_OP_NO_TLSv1_1 in get_ssl_ctx()
180 SSL_CTX_set_options(the_ssl_ctx, SSL_OP_NO_TLSv1_1); in get_ssl_ctx()
/external/curl/lib/vtls/
Dopenssl.c1984 *ctx_options |= SSL_OP_NO_TLSv1_1; in set_ssl_version_min_max()
2007 *ctx_options |= SSL_OP_NO_TLSv1_1; in set_ssl_version_min_max()
2214 ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_connect_step1()
2242 ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_connect_step1()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c2471 #ifdef SSL_OP_NO_TLSv1_1 in tls_set_conn_flags()
2473 SSL_set_options(ssl, SSL_OP_NO_TLSv1_1); in tls_set_conn_flags()
2475 SSL_clear_options(ssl, SSL_OP_NO_TLSv1_1); in tls_set_conn_flags()
2528 SSL_set_options(ssl, SSL_OP_NO_TLSv1_1); in tls_set_conn_flags()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java23 import static org.conscrypt.NativeConstants.SSL_OP_NO_TLSv1_1;
388 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TLSv1_1) == 0); in test_SSL_new()
/external/boringssl/src/include/openssl/
Dssl.h650 #define SSL_OP_NO_TLSv1_1 0x10000000L macro
/external/boringssl/src/ssl/test/
Dbssl_shim.cc2003 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_1); in DoConnection()
/external/python/cpython2/Modules/
D_ssl.c4274 PyModule_AddIntConstant(m, "OP_NO_TLSv1_1", SSL_OP_NO_TLSv1_1); in init_ssl()
/external/python/cpython3/Modules/
D_ssl.c5363 PyModule_AddIntConstant(m, "OP_NO_TLSv1_1", SSL_OP_NO_TLSv1_1); in PyInit__ssl()