Home
last modified time | relevance | path

Searched refs:SSL_OP_CIPHER_SERVER_PREFERENCE (Results 1 – 18 of 18) 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;
330 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;
329 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;
535 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_set_options()
536 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_set_options()
537 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_set_options()
551 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
552 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
553 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_clear_options()
554 NativeCrypto.SSL_clear_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
555 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;
531 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_set_options()
532 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_set_options()
533 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_set_options()
547 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
548 NativeCrypto.SSL_set_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
549 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_clear_options()
550 NativeCrypto.SSL_clear_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
551 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
/external/libwebsockets/lib/tls/openssl/
Dopenssl-client.c700 SSL_OP_CIPHER_SERVER_PREFERENCE); in lws_tls_client_create_vhost_context()
Dopenssl-server.c504 SSL_CTX_set_options(vhost->tls.ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
/external/rust/crates/quiche/deps/boringssl/src/ssl/test/
Dtest_config.cc1183 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx()
1349 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx()
/external/boringssl/src/ssl/test/
Dtest_config.cc1248 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx()
1410 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx()
/external/python/cpython3/Modules/
D_ssl.c3202 #ifdef SSL_OP_CIPHER_SERVER_PREFERENCE in _ssl__SSLContext_impl()
3203 options |= SSL_OP_CIPHER_SERVER_PREFERENCE; in _ssl__SSLContext_impl()
6243 SSL_OP_CIPHER_SERVER_PREFERENCE); in PyInit__ssl()
/external/python/pyopenssl/src/OpenSSL/
DSSL.py171 OP_CIPHER_SERVER_PREFERENCE = _lib.SSL_OP_CIPHER_SERVER_PREFERENCE
/external/rust/crates/quiche/deps/boringssl/src/ssl/
Dhandshake_server.cc348 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in choose_cipher()
Dt1_lib.cc321 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in tls1_get_shared_group()
/external/boringssl/src/ssl/
Dhandshake_server.cc348 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in choose_cipher()
Dt1_lib.cc326 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in tls1_get_shared_group()
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dssl.h690 #define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000L macro
/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()