Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/test/
Dtest_config.cc1509 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_3); in NewSSL()
1512 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_2); in NewSSL()
1515 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1_1); in NewSSL()
1518 SSL_set_options(ssl.get(), SSL_OP_NO_TLSv1); in NewSSL()
1521 SSL_set_options(ssl.get(), SSL_OP_NO_TICKET); in NewSSL()
1578 SSL_set_options(ssl.get(), SSL_OP_NO_QUERY_MTU); in NewSSL()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java346 NativeCrypto.SSL_set_options(ssl, this, SSL_OP_CIPHER_SERVER_PREFERENCE); in initialize()
362 NativeCrypto.SSL_set_options( in initialize()
DNativeCrypto.java910 static native long SSL_set_options(long ssl, NativeSsl ssl_holder, long options); in SSL_set_options() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java347 NativeCrypto.SSL_set_options(ssl, this, SSL_OP_CIPHER_SERVER_PREFERENCE); in initialize()
363 NativeCrypto.SSL_set_options( in initialize()
DNativeCrypto.java950 static native long SSL_set_options(long ssl, NativeSsl ssl_holder, long options); in SSL_set_options() method in NativeCrypto
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c1586 SSL_set_options(conn->ssl, options); in tls_connection_init()
2856 SSL_set_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
2863 SSL_set_options(ssl, SSL_OP_NO_TLSv1); in tls_set_conn_flags()
2869 SSL_set_options(ssl, SSL_OP_NO_TLSv1_1); in tls_set_conn_flags()
2875 SSL_set_options(ssl, SSL_OP_NO_TLSv1_2); in tls_set_conn_flags()
2881 SSL_set_options(ssl, SSL_OP_NO_TLSv1_3); in tls_set_conn_flags()
2989 SSL_set_options(ssl, SSL_OP_NO_TLSv1); in tls_set_conn_flags()
2990 SSL_set_options(ssl, SSL_OP_NO_TLSv1_1); in tls_set_conn_flags()
4458 SSL_set_options(conn->ssl, SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS); in tls_connection_enable_workaround()
4848 SSL_set_options(conn->ssl, SSL_OP_NO_TLSv1_3); in tls_connection_set_params()
/external/boringssl/src/include/openssl/
Dssl.h693 OPENSSL_EXPORT uint32_t SSL_set_options(SSL *ssl, uint32_t options);
4631 #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/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java523 NativeCrypto.SSL_set_options(NULL, null, 0); in SSL_set_options_withNullShouldThrow()
531 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_set_options()
547 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java527 NativeCrypto.SSL_set_options(NULL, null, 0); in SSL_set_options_withNullShouldThrow()
535 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_set_options()
551 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list282 SSL_set_options
DBoringSSL-GRPC.podspec1834 '#define SSL_set_options GRPC_SHADOW_SSL_set_options',
/external/boringssl/src/ssl/
Dssl_lib.cc1421 uint32_t SSL_set_options(SSL *ssl, uint32_t options) { in SSL_set_options() function
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h310 #define SSL_set_options GRPC_SHADOW_SSL_set_options macro
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc6876 jlong result = static_cast<jlong>(SSL_set_options(ssl, static_cast<uint32_t>(options))); in NativeCrypto_SSL_set_options()
10130 CONSCRYPT_NATIVE_METHOD(SSL_set_options, "(J" REF_SSL "J)J"),