Home
last modified time | relevance | path

Searched refs:SSL_get_options (Results 1 – 25 of 35) sorted by relevance

12

/external/python/cryptography/tests/hazmat/bindings/
Dtest_openssl.py52 current_options = b.lib.SSL_get_options(ssl)
56 assert b.lib.SSL_get_options(ssl) == expected_options
/external/cronet/third_party/boringssl/src/ssl/
Dd1_lib.cc173 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_check_timeout_num()
Dd1_both.cc598 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_update_mtu()
Dextensions.cc1001 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello()
1044 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello()
1060 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello()
3971 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
Dtls13_server.cc133 (SSL_get_options(ssl) & SSL_OP_NO_TICKET)) { in add_new_session_tickets()
/external/boringssl/src/ssl/
Dd1_lib.cc173 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_check_timeout_num()
Dd1_both.cc598 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_update_mtu()
Dextensions.cc1001 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello()
1044 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello()
1060 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello()
3971 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
Dtls13_server.cc133 (SSL_get_options(ssl) & SSL_OP_NO_TICKET)) { in add_new_session_tickets()
Dssl_session.cc721 !(SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) && in ssl_get_prev_session()
/external/rust/crates/quiche/deps/boringssl/src/ssl/
Dd1_lib.cc173 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_check_timeout_num()
Dd1_both.cc606 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_update_mtu()
Dextensions.cc996 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello()
1039 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello()
1055 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello()
3963 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
Dtls13_server.cc129 (SSL_get_options(ssl) & SSL_OP_NO_TICKET)) { in add_new_session_tickets()
/external/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/
Dssl.h1707 unsigned long SSL_get_options(SSL *ssl);
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java382 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TICKET) != 0); in test_SSL_new()
510 NativeCrypto.SSL_get_options(NULL, null); in SSL_get_options_withNullShouldThrow()
517 assertTrue(NativeCrypto.SSL_get_options(s, null) != 0); in test_SSL_get_options()
531 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); 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()
549 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); 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/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java386 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TICKET) != 0); in test_SSL_new()
514 NativeCrypto.SSL_get_options(NULL, null); in SSL_get_options_withNullShouldThrow()
521 assertTrue(NativeCrypto.SSL_get_options(s, null) != 0); in test_SSL_get_options()
535 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); 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()
553 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); 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/common/src/main/java/org/conscrypt/
DNativeSsl.java346 ssl, this, NativeCrypto.SSL_get_options(ssl, this) | SSL_OP_NO_TICKET); in initialize()
DNativeCrypto.java1459 static native long SSL_get_options(long ssl, NativeSsl ssl_holder); in SSL_get_options() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java347 ssl, this, NativeCrypto.SSL_get_options(ssl, this) | SSL_OP_NO_TICKET); in initialize()
DNativeCrypto.java1500 static native long SSL_get_options(long ssl, NativeSsl ssl_holder); in SSL_get_options() method in NativeCrypto
/external/libwebsockets/lib/tls/mbedtls/wrapper/library/
Dssl_lib.c693 unsigned long SSL_get_options(SSL *ssl) in SSL_get_options() function
/external/boringssl/src/include/openssl/
Dssl.h747 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl);
5368 #define SSL_get_options SSL_get_options macro
/external/cronet/third_party/boringssl/src/include/openssl/
Dssl.h747 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl);
5344 #define SSL_get_options SSL_get_options macro
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dssl.h731 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl);
5169 #define SSL_get_options SSL_get_options macro

12