Home
last modified time | relevance | path

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

12

/third_party/node/test/parallel/
Dtest-tls-async-cb-after-socket-end.js6 const SSL_OP_NO_TICKET = require('crypto').constants.SSL_OP_NO_TICKET; constant
17 secureOptions: SSL_OP_NO_TICKET,
Dtest-tls-ocsp-callback.js36 const SSL_OP_NO_TICKET = require('crypto').constants.SSL_OP_NO_TICKET; constant
88 secureOptions: testOptions.ocsp ? 0 : SSL_OP_NO_TICKET,
Dtest-https-agent-session-eviction.js11 const { SSL_OP_NO_TICKET } = require('crypto').constants;
16 secureOptions: SSL_OP_NO_TICKET
/third_party/nghttp2/src/
Dasio_server_tls_context.cc70 SSL_OP_SINGLE_ECDH_USE | SSL_OP_NO_TICKET | in configure_tls_context_easy()
Dshrpx_connection.cc375 if (ssl_opts & SSL_OP_NO_TICKET) { in tls_handshake()
376 SSL_set_options(ssl, SSL_OP_NO_TICKET); in tls_handshake()
Dshrpx_tls.cc1251 SSL_set_options(ssl, SSL_OP_NO_TICKET); in accept_connection()
DHttpServer.cc2117 SSL_OP_SINGLE_ECDH_USE | SSL_OP_NO_TICKET | in run()
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
Dio_openssl.c94 options = SSL_OP_NO_TICKET; in SPDYF_openssl_init()
/third_party/openssl/ssl/
Dssl_conf.c377 SSL_FLAG_TBL_INV("SessionTicket", SSL_OP_NO_TICKET), in cmd_Options()
698 {SSL_OP_NO_TICKET, 0}, /* no_ticket */
Dssl_lib.c3075 ret->options |= SSL_OP_NO_TICKET; in SSL_CTX_new()
3497 || (s->options & SSL_OP_NO_TICKET) != 0)) in ssl_update_cache()
/third_party/node/src/
Dnode_constants.cc901 #ifdef SSL_OP_NO_TICKET in DefineCryptoConstants()
902 NODE_DEFINE_CONSTANT(target, SSL_OP_NO_TICKET); in DefineCryptoConstants()
/third_party/openssl/doc/man3/
DSSL_CTX_set_options.pod146 =item SSL_OP_NO_TICKET
173 By default OpenSSL will use stateless tickets. The SSL_OP_NO_TICKET option will
DSSL_CONF_cmd.pod188 Disables support for session tickets, same as setting B<SSL_OP_NO_TICKET>.
434 B<SSL_OP_NO_TICKET>: that is B<-SessionTicket> is the same as setting
435 B<SSL_OP_NO_TICKET>.
DSSL_read_early_data.pod298 being used the server will operate as if the SSL_OP_NO_TICKET option had been
/third_party/openssl/ssl/statem/
Dextensions.c930 int was_ticket = (SSL_get_options(s) & SSL_OP_NO_TICKET) == 0; in final_server_name()
983 && was_ticket && (SSL_get_options(s) & SSL_OP_NO_TICKET) != 0) { in final_server_name()
Dextensions_srvr.c1178 if ((s->options & SSL_OP_NO_TICKET) != 0 in tls_parse_ctos_psk()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dtls_openssl.c2915 #ifdef SSL_OP_NO_TICKET in tls_set_conn_flags()
2917 SSL_set_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
2919 SSL_clear_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
5303 #ifdef SSL_OP_NO_TICKET in tls_global_set_params()
5305 SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_TICKET); in tls_global_set_params()
5307 SSL_CTX_clear_options(ssl_ctx, SSL_OP_NO_TICKET); in tls_global_set_params()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dtls_openssl.c2915 #ifdef SSL_OP_NO_TICKET in tls_set_conn_flags()
2917 SSL_set_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
2919 SSL_clear_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
5303 #ifdef SSL_OP_NO_TICKET in tls_global_set_params()
5305 SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_TICKET); in tls_global_set_params()
5307 SSL_CTX_clear_options(ssl_ctx, SSL_OP_NO_TICKET); in tls_global_set_params()
/third_party/boringssl/src/ssl/
Dt1_lib.cc903 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello()
946 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello()
962 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello()
3668 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
Dtls13_server.cc124 (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()
/third_party/openssl/test/
Dssltest_old.c1371 SSL_CTX_set_options(c_ctx, SSL_OP_NO_TICKET); in main()
1372 SSL_CTX_set_options(s_ctx, SSL_OP_NO_TICKET); in main()
Dsslapitest.c618 || !TEST_true(SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET)) in test_ccs_change_cipher()
1208 SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET); in execute_test_session()
1392 SSL_CTX_set_options(*sctx, SSL_OP_NO_TICKET); in setup_ticket_test()
/third_party/curl/lib/vtls/
Dopenssl.c2722 #ifdef SSL_OP_NO_TICKET in ossl_connect_step1()
2723 ctx_options |= SSL_OP_NO_TICKET; in ossl_connect_step1()
/third_party/boringssl/src/ssl/test/
Dtest_config.cc1507 SSL_set_options(ssl.get(), SSL_OP_NO_TICKET); in NewSSL()

12