Home
last modified time | relevance | path

Searched refs:SSL_OP_NO_TICKET (Results 1 – 15 of 15) sorted by relevance

/external/conscrypt/constants/src/gen/cpp/
Dgenerate_constants.cc74 CONST(SSL_OP_NO_TICKET); in main()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java21 import static org.conscrypt.NativeConstants.SSL_OP_NO_TICKET;
360 NativeCrypto.SSL_clear_options(ssl, this, SSL_OP_NO_TICKET); in initialize()
363 ssl, this, NativeCrypto.SSL_get_options(ssl, this) | SSL_OP_NO_TICKET); in initialize()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java22 import static com.android.org.conscrypt.NativeConstants.SSL_OP_NO_TICKET;
361 NativeCrypto.SSL_clear_options(ssl, this, SSL_OP_NO_TICKET); in initialize()
364 ssl, this, NativeCrypto.SSL_get_options(ssl, this) | SSL_OP_NO_TICKET); in initialize()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c2854 #ifdef SSL_OP_NO_TICKET in tls_set_conn_flags()
2856 SSL_set_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
2858 SSL_clear_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
5076 #ifdef SSL_OP_NO_TICKET in tls_global_set_params()
5078 SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_TICKET); in tls_global_set_params()
5080 SSL_CTX_clear_options(ssl_ctx, SSL_OP_NO_TICKET); in tls_global_set_params()
/external/boringssl/src/ssl/
Dt1_lib.cc937 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello()
980 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello()
996 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello()
3582 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
Dtls13_server.cc180 (SSL_get_options(ssl) & SSL_OP_NO_TICKET)) { in add_new_session_tickets()
Dssl_session.cc723 !(SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) && in ssl_get_prev_session()
Dssl_test.cc4428 SSL_CTX_set_options(server_ctx_.get(), SSL_OP_NO_TICKET); in TEST_P()
4560 SSL_CTX_set_options(server_ctx_.get(), SSL_OP_NO_TICKET); in TEST_P()
/external/curl/lib/vtls/
Dopenssl.c2438 #ifdef SSL_OP_NO_TICKET in ossl_connect_step1()
2439 ctx_options |= SSL_OP_NO_TICKET; in ossl_connect_step1()
/external/boringssl/src/ssl/test/
Dtest_config.cc1521 SSL_set_options(ssl.get(), SSL_OP_NO_TICKET); in NewSSL()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java22 import static org.conscrypt.NativeConstants.SSL_OP_NO_TICKET;
381 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TICKET) != 0); in test_SSL_new()
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java23 import static com.android.org.conscrypt.NativeConstants.SSL_OP_NO_TICKET;
385 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TICKET) != 0); in test_SSL_new()
/external/boringssl/src/include/openssl/
Dssl.h659 #define SSL_OP_NO_TICKET 0x00004000L macro
/external/python/cpython3/Modules/
D_ssl.c5955 PyModule_AddIntConstant(m, "OP_NO_TICKET", SSL_OP_NO_TICKET); in PyInit__ssl()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc6506 | SSL_OP_NO_TICKET in NativeCrypto_SSL_CTX_new()