Home
last modified time | relevance | path

Searched refs:SSL_set_options (Results 1 – 9 of 9) sorted by relevance

/external/boringssl/src/ssl/test/
Dbssl_shim.cc1166 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_2); in DoExchange()
1169 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_1); in DoExchange()
1172 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1); in DoExchange()
1175 SSL_set_options(ssl.get(), SSL_OP_NO_SSLv3); in DoExchange()
1227 SSL_set_options(ssl.get(), SSL_OP_NO_QUERY_MTU); in DoExchange()
1246 SSL_set_options(ssl.get(), SSL_OP_DISABLE_NPN); in DoExchange()
/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java870 public static native long SSL_set_options(long ssl, long options); in SSL_set_options() method in NativeCrypto
959 SSL_set_options(ssl, optionsToSet); in setEnabledProtocols()
DSSLParametersImpl.java565 NativeCrypto.SSL_set_options(sslNativePointer, in setSSLParameters()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c1338 SSL_set_options(conn->ssl, options); in tls_connection_init()
2237 SSL_set_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
2246 SSL_set_options(ssl, SSL_OP_NO_TLSv1); in tls_set_conn_flags()
2252 SSL_set_options(ssl, SSL_OP_NO_TLSv1_1); in tls_set_conn_flags()
2258 SSL_set_options(ssl, SSL_OP_NO_TLSv1_2); in tls_set_conn_flags()
3625 SSL_set_options(conn->ssl, SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS); in tls_connection_enable_workaround()
/external/boringssl/src/include/openssl/
Dssl.h579 OPENSSL_EXPORT uint32_t SSL_set_options(SSL *ssl, uint32_t options);
4279 #define SSL_set_options SSL_set_options macro
/external/webrtc/webrtc/base/
Dopensslstreamadapter.cc794 SSL_set_options(ssl_, SSL_OP_SINGLE_ECDH_USE); in BeginSSL()
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java540 NativeCrypto.SSL_set_options(NULL, 0); in test_SSL_set_options()
548 NativeCrypto.SSL_set_options(s, NativeConstants.SSL_OP_NO_SSLv3); in test_SSL_set_options()
564 NativeCrypto.SSL_set_options(s, NativeConstants.SSL_OP_NO_SSLv3); in test_SSL_clear_options()
1162 NativeCrypto.SSL_set_options( in test_SSL_do_handshake_clientCertificateRequested_throws_after_renegotiate()
/external/boringssl/src/ssl/
Dssl_lib.c830 uint32_t SSL_set_options(SSL *ssl, uint32_t options) { in SSL_set_options() function
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp8587 long result = SSL_set_options(ssl, options);
11253 NATIVE_METHOD(NativeCrypto, SSL_set_options, "(JJ)J"),