Searched refs:SSL_set_options (Results 1 – 7 of 7) sorted by relevance
/external/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 577 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_2); in DoExchange() 580 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_1); in DoExchange() 583 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1); in DoExchange() 586 SSL_set_options(ssl.get(), SSL_OP_NO_SSLv3); in DoExchange() 589 SSL_set_options(ssl.get(), SSL_OP_TLS_D5_BUG); in DoExchange() 592 SSL_set_options(ssl.get(), SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION); in DoExchange() 648 SSL_set_options(ssl.get(), SSL_OP_NO_QUERY_MTU); in DoExchange()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | NativeCrypto.java | 833 public static native long SSL_set_options(long ssl, long options); in SSL_set_options() method in NativeCrypto 910 SSL_set_options(ssl, optionsToSet); in setEnabledProtocols()
|
/external/wpa_supplicant_8/src/crypto/ |
D | tls_openssl.c | 1094 SSL_set_options(conn->ssl, options); in tls_connection_init() 3142 SSL_set_options(conn->ssl, SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS); in tls_connection_enable_workaround() 3563 SSL_set_options(conn->ssl, SSL_OP_NO_TICKET); in tls_connection_set_params() 3572 SSL_set_options(conn->ssl, SSL_OP_NO_TLSv1_1); in tls_connection_set_params() 3578 SSL_set_options(conn->ssl, SSL_OP_NO_TLSv1_2); in tls_connection_set_params()
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 401 OPENSSL_EXPORT uint32_t SSL_set_options(SSL *ssl, uint32_t options); 2514 #define SSL_set_options SSL_set_options macro
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 530 NativeCrypto.SSL_set_options(NULL, 0); in test_SSL_set_options() 538 NativeCrypto.SSL_set_options(s, NativeConstants.SSL_OP_NO_SSLv3); in test_SSL_set_options() 554 NativeCrypto.SSL_set_options(s, NativeConstants.SSL_OP_NO_SSLv3); in test_SSL_clear_options() 1152 NativeCrypto.SSL_set_options( in test_SSL_do_handshake_clientCertificateRequested_throws_after_renegotiate()
|
/external/boringssl/src/ssl/ |
D | ssl_lib.c | 994 uint32_t SSL_set_options(SSL *ssl, uint32_t options) { in SSL_set_options() function
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 8604 long result = SSL_set_options(ssl, options); 10833 NATIVE_METHOD(NativeCrypto, SSL_set_options, "(JJ)J"),
|