Searched refs:SSL_OP_CIPHER_SERVER_PREFERENCE (Results 1 – 11 of 11) sorted by relevance
/external/conscrypt/constants/src/gen/cpp/ |
D | generate_constants.cc | 73 CONST(SSL_OP_CIPHER_SERVER_PREFERENCE); in main()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeSsl.java | 20 import static org.conscrypt.NativeConstants.SSL_OP_CIPHER_SERVER_PREFERENCE; 346 NativeCrypto.SSL_set_options(ssl, this, SSL_OP_CIPHER_SERVER_PREFERENCE); in initialize()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeSsl.java | 21 import static com.android.org.conscrypt.NativeConstants.SSL_OP_CIPHER_SERVER_PREFERENCE; 347 NativeCrypto.SSL_set_options(ssl, this, SSL_OP_CIPHER_SERVER_PREFERENCE); in initialize()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 21 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/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | NativeCryptoTest.java | 22 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/boringssl/src/ssl/test/ |
D | test_config.cc | 1171 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx() 1344 SSL_CTX_set_options(ssl_ctx.get(), SSL_OP_CIPHER_SERVER_PREFERENCE); in SetupCtx()
|
/external/python/cpython3/Modules/ |
D | _ssl.c | 3041 #ifdef SSL_OP_CIPHER_SERVER_PREFERENCE in _ssl__SSLContext_impl() 3042 options |= SSL_OP_CIPHER_SERVER_PREFERENCE; in _ssl__SSLContext_impl() 5953 SSL_OP_CIPHER_SERVER_PREFERENCE); in PyInit__ssl()
|
/external/boringssl/src/ssl/ |
D | handshake_server.cc | 349 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in ssl3_choose_cipher()
|
D | t1_lib.cc | 317 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) { in tls1_get_shared_group()
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 664 #define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000L macro
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 4371 SSL_OP_CIPHER_SERVER_PREFERENCE); in init_ssl()
|