Home
last modified time | relevance | path

Searched refs:SSL_clear_options (Results 1 – 8 of 8) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java835 public static native long SSL_clear_options(long ssl, long options); in SSL_clear_options() method in NativeCrypto
911 SSL_clear_options(ssl, optionsToClear); in setEnabledProtocols()
DSSLParametersImpl.java519 NativeCrypto.SSL_clear_options(sslNativePointer, NativeConstants.SSL_OP_NO_TICKET); in setSSLParameters()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c3564 #ifdef SSL_clear_options in tls_connection_set_params()
3566 SSL_clear_options(conn->ssl, SSL_OP_NO_TICKET); in tls_connection_set_params()
3574 SSL_clear_options(conn->ssl, SSL_OP_NO_TLSv1_1); in tls_connection_set_params()
3580 SSL_clear_options(conn->ssl, SSL_OP_NO_TLSv1_2); in tls_connection_set_params()
/external/boringssl/src/include/openssl/
Dssl.h406 OPENSSL_EXPORT uint32_t SSL_clear_options(SSL *ssl, uint32_t options);
2541 #define SSL_clear_options SSL_clear_options macro
/external/boringssl/src/ssl/test/
Dbssl_shim.cc595 SSL_clear_options(ssl.get(), SSL_OP_LEGACY_SERVER_CONNECT); in DoExchange()
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java546 NativeCrypto.SSL_clear_options(NULL, 0); in test_SSL_clear_options()
556 NativeCrypto.SSL_clear_options(s, NativeConstants.SSL_OP_NO_SSLv3); in test_SSL_clear_options()
/external/boringssl/src/ssl/
Dssl_lib.c1004 uint32_t SSL_clear_options(SSL *ssl, uint32_t options) { in SSL_clear_options() function
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp8619 long result = SSL_clear_options(ssl, options);
10846 NATIVE_METHOD(NativeCrypto, SSL_clear_options, "(JJ)J"),