/third_party/openssl/ssl/ |
D | s3_lib.c | 137 SSL3_VERSION, TLS1_2_VERSION, 153 SSL3_VERSION, TLS1_2_VERSION, 170 SSL3_VERSION, TLS1_2_VERSION, 186 SSL3_VERSION, TLS1_2_VERSION, 202 SSL3_VERSION, TLS1_2_VERSION, 218 SSL3_VERSION, TLS1_2_VERSION, 235 SSL3_VERSION, TLS1_2_VERSION, 251 SSL3_VERSION, TLS1_2_VERSION, 267 SSL3_VERSION, TLS1_2_VERSION, 283 SSL3_VERSION, TLS1_2_VERSION, [all …]
|
D | methods.c | 27 IMPLEMENT_tls_meth_func(TLS1_2_VERSION, 0, SSL_OP_NO_TLSv1_2, 58 IMPLEMENT_tls_meth_func(TLS1_2_VERSION, 0, SSL_OP_NO_TLSv1_2, in IMPLEMENT_tls_meth_func() 91 IMPLEMENT_tls_meth_func(TLS1_2_VERSION, 0, SSL_OP_NO_TLSv1_2, in IMPLEMENT_tls_meth_func()
|
D | ssl_lib.c | 516 max_version = TLS1_2_VERSION; in ssl_check_allowed_versions() 519 if (max_version == TLS1_2_VERSION) in ssl_check_allowed_versions() 540 min_version = TLS1_2_VERSION; in ssl_check_allowed_versions() 543 if (min_version == TLS1_2_VERSION) in ssl_check_allowed_versions() 558 || (min_version <= TLS1_2_VERSION && TLS1_2_VERSION <= max_version) in ssl_check_allowed_versions() 3411 && TLS1_get_version(s) == TLS1_2_VERSION)) in ssl_set_masks() 3437 && TLS1_get_version(s) == TLS1_2_VERSION) in ssl_set_masks() 3443 && TLS1_get_version(s) == TLS1_2_VERSION) in ssl_set_masks() 3771 case TLS1_2_VERSION: in ssl_protocol_to_string()
|
/third_party/openssl/test/ |
D | ssl_ctx_test.c | 25 {TLS1_VERSION, TLS1_2_VERSION, 1, 1, TLS1_VERSION, TLS1_2_VERSION}, 26 {TLS1_2_VERSION, TLS1_2_VERSION, 1, 1, TLS1_2_VERSION, TLS1_2_VERSION}, 27 {TLS1_2_VERSION, TLS1_1_VERSION, 1, 0, TLS1_2_VERSION, 0},
|
D | gosttest.c | 27 {"GOST2012-GOST8912-GOST8912", TLS1_2_VERSION, 0}, 29 {"GOST2012-GOST8912-GOST8912", TLS1_2_VERSION, 1}, 31 {"GOST2001-GOST89-GOST89", TLS1_2_VERSION, 0},
|
D | sysdefaulttest.c | 23 if (!TEST_int_eq(SSL_CTX_get_min_proto_version(ctx), TLS1_2_VERSION) in test_func() 24 && !TEST_int_eq(SSL_CTX_get_max_proto_version(ctx), TLS1_2_VERSION)) { in test_func()
|
D | recordlentest.c | 116 SSL_CTX_set_max_proto_version(sctx, TLS1_2_VERSION); in test_record_overflow() 161 recversion = TLS1_2_VERSION; in test_record_overflow()
|
D | sslapitest.c | 566 SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION); in test_client_hello_cb() 617 TLS1_VERSION, TLS1_2_VERSION, in test_ccs_change_cipher() 1208 if (maxprot == TLS1_2_VERSION) in execute_test_session() 1310 return execute_test_session(TLS1_2_VERSION, 1, 0); in test_session_with_only_int_cache() 1324 return execute_test_session(TLS1_2_VERSION, 0, 1); in test_session_with_only_ext_cache() 1338 return execute_test_session(TLS1_2_VERSION, 1, 1); in test_session_with_both_cache() 1722 SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION); in test_ssl_set_bio() 1945 SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION); in test_set_sigalgs() 2954 if (!TEST_true(SSL_SESSION_set_protocol_version(sess, TLS1_2_VERSION))) in test_early_data_psk() 3248 SSL_set_max_proto_version(clientssl, TLS1_2_VERSION); in test_early_data_tls1_2() [all …]
|
D | clienthellotest.c | 97 if (!TEST_true(SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION))) in test_client_hello()
|
D | sslcorrupttest.c | 212 if (!TEST_true(SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION))) in test_ssl_corrupt()
|
D | tls13encryptiontest.c | 331 rec.rec_version = TLS1_2_VERSION; in test_tls13_encryption()
|
D | tls13ccstest.c | 113 expectedrecvers = TLS1_2_VERSION; in watchccs_write()
|
/third_party/nghttp2/src/ |
D | tls.cc | 87 case TLS1_2_VERSION: in get_tls_protocol() 144 return tls_ver >= TLS1_2_VERSION; in check_http2_tls_version() 182 if (min > TLS1_2_VERSION) { in ssl_ctx_set_proto_versions() 186 if (max < TLS1_2_VERSION) { in ssl_ctx_set_proto_versions()
|
D | tls.h | 71 constexpr auto NGHTTP2_TLS_MAX_VERSION = TLS1_2_VERSION;
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/ |
D | ssl_methods.c | 37 IMPLEMENT_TLS_METHOD(TLS1_2_VERSION, 0, TLS_method_func, TLSv1_2_client_method); 52 IMPLEMENT_TLS_METHOD(TLS1_2_VERSION, 1, TLS_method_func, TLSv1_2_server_method); 67 IMPLEMENT_SSL_METHOD(TLS1_2_VERSION, -1, TLS_method_func, TLSv1_2_method);
|
/third_party/node/lib/ |
D | _tls_common.js | 44 TLS1_2_VERSION, 55 if (v === 'TLSv1.2') return TLS1_2_VERSION; 220 if (cipherSuites === '' && c.context.getMaxProto() > TLS1_2_VERSION && 222 c.context.setMaxProto(TLS1_2_VERSION); 225 c.context.getMaxProto() > TLS1_2_VERSION)
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/ |
D | tls1.h | 49 #define TLS1_2_VERSION 0x0303 macro
|
/third_party/openssl/apps/ |
D | ciphers.c | 142 min_version = TLS1_2_VERSION; in ciphers_main() 143 max_version = TLS1_2_VERSION; in ciphers_main()
|
/third_party/openssl/ssl/statem/ |
D | statem_lib.c | 1433 {TLS1_2_VERSION, tlsv1_2_client_method, tlsv1_2_server_method}, 1435 {TLS1_2_VERSION, NULL, NULL}, 1720 if (vers == TLS1_2_VERSION in check_for_downgrade() 1724 && vers < TLS1_2_VERSION in check_for_downgrade() 1732 && ssl_version_supported(s, TLS1_2_VERSION, NULL)) { in check_for_downgrade() 1861 client_version = TLS1_2_VERSION; in ssl_choose_server_version() 1972 if (s->version == TLS1_2_VERSION && real_max > s->version) { in ssl_choose_client_version() 1984 && s->version < TLS1_2_VERSION in ssl_choose_client_version() 2160 if (!SSL_IS_DTLS(s) && ver_max > TLS1_2_VERSION) in ssl_set_client_hello_version() 2161 ver_max = TLS1_2_VERSION; in ssl_set_client_hello_version()
|
/third_party/openssl/doc/man3/ |
D | SSL_SESSION_get_protocol_version.pod | 30 B<TLS1_VERSION>, B<TLS1_2_VERSION> or B<TLS1_3_VERSION>.
|
D | SSL_CTX_set_min_proto_version.pod | 42 B<TLS1_1_VERSION>, B<TLS1_2_VERSION>, B<TLS1_3_VERSION> for TLS and
|
D | SSL_get_version.pod | 83 =item TLS1_2_VERSION
|
/third_party/boost/libs/asio/include/boost/asio/ssl/impl/ |
D | context.ipp | 231 SSL_CTX_set_min_proto_version(handle_, TLS1_2_VERSION); 232 SSL_CTX_set_max_proto_version(handle_, TLS1_2_VERSION); 239 SSL_CTX_set_min_proto_version(handle_, TLS1_2_VERSION); 240 SSL_CTX_set_max_proto_version(handle_, TLS1_2_VERSION); 247 SSL_CTX_set_min_proto_version(handle_, TLS1_2_VERSION); 248 SSL_CTX_set_max_proto_version(handle_, TLS1_2_VERSION);
|
/third_party/boost/boost/asio/ssl/impl/ |
D | context.ipp | 231 SSL_CTX_set_min_proto_version(handle_, TLS1_2_VERSION); 232 SSL_CTX_set_max_proto_version(handle_, TLS1_2_VERSION); 239 SSL_CTX_set_min_proto_version(handle_, TLS1_2_VERSION); 240 SSL_CTX_set_max_proto_version(handle_, TLS1_2_VERSION); 247 SSL_CTX_set_min_proto_version(handle_, TLS1_2_VERSION); 248 SSL_CTX_set_max_proto_version(handle_, TLS1_2_VERSION);
|
/third_party/node/src/ |
D | node_constants.cc | 1080 #ifdef TLS1_2_VERSION in DefineCryptoConstants() 1081 NODE_DEFINE_CONSTANT(target, TLS1_2_VERSION); in DefineCryptoConstants()
|