Home
last modified time | relevance | path

Searched refs:SSL_OP_CIPHER_SERVER_PREFERENCE (Results 1 – 12 of 12) sorted by relevance

/external/conscrypt/constants/src/gen/cpp/
Dgenerate_constants.cc74 CONST(SSL_OP_CIPHER_SERVER_PREFERENCE); in main()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java21 import static com.android.org.conscrypt.NativeConstants.SSL_OP_CIPHER_SERVER_PREFERENCE;
329 NativeCrypto.SSL_set_options(ssl, this, SSL_OP_CIPHER_SERVER_PREFERENCE); in initialize()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java20 import static org.conscrypt.NativeConstants.SSL_OP_CIPHER_SERVER_PREFERENCE;
328 NativeCrypto.SSL_set_options(ssl, this, SSL_OP_CIPHER_SERVER_PREFERENCE); in initialize()
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java22 import static com.android.org.conscrypt.NativeConstants.SSL_OP_CIPHER_SERVER_PREFERENCE;
534 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_set_options()
535 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_set_options()
536 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_set_options()
550 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
551 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
552 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_clear_options()
553 NativeCrypto.SSL_clear_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
554 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java21 import static org.conscrypt.NativeConstants.SSL_OP_CIPHER_SERVER_PREFERENCE;
530 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_set_options()
531 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_set_options()
532 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_set_options()
546 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
547 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
548 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_clear_options()
549 NativeCrypto.SSL_clear_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
550 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
/external/boringssl/src/ssl/test/
Dtest_config.cc1153 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx()
1326 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx()
/external/python/cpython3/Modules/
D_ssl.c3171 #ifdef SSL_OP_CIPHER_SERVER_PREFERENCE in _ssl__SSLContext_impl()
3172 options |= SSL_OP_CIPHER_SERVER_PREFERENCE; in _ssl__SSLContext_impl()
6210 SSL_OP_CIPHER_SERVER_PREFERENCE); in PyInit__ssl()
/external/boringssl/src/ssl/
Dhandshake_server.cc349 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in ssl3_choose_cipher()
Dt1_lib.cc321 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in tls1_get_shared_group()
/external/python/pyopenssl/src/OpenSSL/
DSSL.py161 OP_CIPHER_SERVER_PREFERENCE = _lib.SSL_OP_CIPHER_SERVER_PREFERENCE
/external/boringssl/src/include/openssl/
Dssl.h690 #define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000L macro
/external/python/cpython2/Modules/
D_ssl.c4371 SSL_OP_CIPHER_SERVER_PREFERENCE); in init_ssl()