/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/ |
D | ssl_methods.c | 40 IMPLEMENT_TLS_METHOD(TLS1_1_VERSION, 0, TLS_method_func, TLSv1_1_client_method); 55 IMPLEMENT_TLS_METHOD(TLS1_1_VERSION, 1, TLS_method_func, TLSv1_1_server_method); 70 IMPLEMENT_SSL_METHOD(TLS1_1_VERSION, -1, TLS_method_func, TLSv1_1_method);
|
D | ssl_lib.c | 810 else if (version == TLS1_1_VERSION) in ssl_protocol_to_string()
|
/third_party/nghttp2/src/ |
D | tls.cc | 89 case TLS1_1_VERSION: in get_tls_protocol() 179 if (min > TLS1_1_VERSION) { in ssl_ctx_set_proto_versions() 189 if (max < TLS1_1_VERSION) { in ssl_ctx_set_proto_versions()
|
/third_party/openssl/ssl/ |
D | methods.c | 33 IMPLEMENT_tls_meth_func(TLS1_1_VERSION, SSL_METHOD_NO_SUITEB, SSL_OP_NO_TLSv1_1, in IMPLEMENT_tls_meth_func() argument 64 IMPLEMENT_tls_meth_func(TLS1_1_VERSION, SSL_METHOD_NO_SUITEB, SSL_OP_NO_TLSv1_1, in IMPLEMENT_tls_meth_func() 97 IMPLEMENT_tls_meth_func(TLS1_1_VERSION, SSL_METHOD_NO_SUITEB, SSL_OP_NO_TLSv1_1, in IMPLEMENT_tls_meth_func()
|
D | ssl_lib.c | 520 max_version = TLS1_1_VERSION; in ssl_check_allowed_versions() 523 if (max_version == TLS1_1_VERSION) in ssl_check_allowed_versions() 536 min_version = TLS1_1_VERSION; in ssl_check_allowed_versions() 539 if (min_version == TLS1_1_VERSION) in ssl_check_allowed_versions() 555 || (min_version <= TLS1_1_VERSION && TLS1_1_VERSION <= max_version) in ssl_check_allowed_versions() 3774 case TLS1_1_VERSION: in ssl_protocol_to_string()
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/ |
D | tls1.h | 48 #define TLS1_1_VERSION 0x0302 macro
|
/third_party/openssl/apps/ |
D | ciphers.c | 138 min_version = TLS1_1_VERSION; in ciphers_main() 139 max_version = TLS1_1_VERSION; in ciphers_main()
|
D | s_cb.c | 490 {"TLS 1.1", TLS1_1_VERSION}, 572 version == TLS1_1_VERSION || in msg_cb()
|
/third_party/openssl/test/ |
D | ssl_ctx_test.c | 27 {TLS1_2_VERSION, TLS1_1_VERSION, 1, 0, TLS1_2_VERSION, 0},
|
D | ssl_test_ctx_test.c | 175 fixture->expected_ctx->expected_protocol = TLS1_1_VERSION; in test_good_configuration()
|
D | ssltest_old.c | 818 {"tls1.1", TLS1_1_VERSION}, in protocol_from_string() 1367 min_version = TLS1_1_VERSION; in main() 1368 max_version = TLS1_1_VERSION; in main()
|
D | ssl_test_ctx.c | 157 {"TLSv1.1", TLS1_1_VERSION},
|
/third_party/node/lib/ |
D | _tls_common.js | 43 TLS1_1_VERSION, 54 if (v === 'TLSv1.1') return TLS1_1_VERSION;
|
/third_party/boost/libs/asio/include/boost/asio/ssl/impl/ |
D | context.ipp | 186 SSL_CTX_set_min_proto_version(handle_, TLS1_1_VERSION); 187 SSL_CTX_set_max_proto_version(handle_, TLS1_1_VERSION); 194 SSL_CTX_set_min_proto_version(handle_, TLS1_1_VERSION); 195 SSL_CTX_set_max_proto_version(handle_, TLS1_1_VERSION); 202 SSL_CTX_set_min_proto_version(handle_, TLS1_1_VERSION); 203 SSL_CTX_set_max_proto_version(handle_, TLS1_1_VERSION);
|
/third_party/boost/boost/asio/ssl/impl/ |
D | context.ipp | 186 SSL_CTX_set_min_proto_version(handle_, TLS1_1_VERSION); 187 SSL_CTX_set_max_proto_version(handle_, TLS1_1_VERSION); 194 SSL_CTX_set_min_proto_version(handle_, TLS1_1_VERSION); 195 SSL_CTX_set_max_proto_version(handle_, TLS1_1_VERSION); 202 SSL_CTX_set_min_proto_version(handle_, TLS1_1_VERSION); 203 SSL_CTX_set_max_proto_version(handle_, TLS1_1_VERSION);
|
/third_party/openssl/doc/man3/ |
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 | 79 =item TLS1_1_VERSION
|
/third_party/openssl/crypto/evp/ |
D | e_aes_cbc_hmac_sha1.c | 428 else if (key->aux.tls_ver >= TLS1_1_VERSION) in aesni_cbc_hmac_sha1_cipher() 497 >= TLS1_1_VERSION) { in aesni_cbc_hmac_sha1_cipher() 816 p[arg - 4] << 8 | p[arg - 3]) >= TLS1_1_VERSION) { in aesni_cbc_hmac_sha1_ctrl() 852 if ((param->inp[9] << 8 | param->inp[10]) < TLS1_1_VERSION) in aesni_cbc_hmac_sha1_ctrl()
|
D | e_aes_cbc_hmac_sha256.c | 444 else if (key->aux.tls_ver >= TLS1_1_VERSION) in aesni_cbc_hmac_sha256_cipher() 527 >= TLS1_1_VERSION) in aesni_cbc_hmac_sha256_cipher() 797 p[arg - 4] << 8 | p[arg - 3]) >= TLS1_1_VERSION) { in aesni_cbc_hmac_sha256_ctrl() 836 if ((param->inp[9] << 8 | param->inp[10]) < TLS1_1_VERSION) in aesni_cbc_hmac_sha256_ctrl()
|
/third_party/openssl/include/crypto/ |
D | evp.h | 432 #ifndef TLS1_1_VERSION 433 # define TLS1_1_VERSION 0x0302 macro
|
/third_party/node/src/ |
D | node_constants.cc | 1076 #ifdef TLS1_1_VERSION in DefineCryptoConstants() 1077 NODE_DEFINE_CONSTANT(target, TLS1_1_VERSION); in DefineCryptoConstants()
|
/third_party/openssl/include/openssl/ |
D | tls1.h | 28 # define TLS1_1_VERSION 0x0302 macro
|
/third_party/openssl/engines/ |
D | e_dasync.c | 621 if ((p[arg - 4] << 8 | p[arg - 3]) >= TLS1_1_VERSION) { in dasync_cipher_ctrl_helper()
|
/third_party/curl/lib/vtls/ |
D | openssl.c | 2136 #ifdef TLS1_1_VERSION in ossl_trace() 2137 case TLS1_1_VERSION: in ossl_trace() 2316 ossl_ssl_version_min = TLS1_1_VERSION; in set_ssl_version_min_max() 2349 ossl_ssl_version_max = TLS1_1_VERSION; in set_ssl_version_min_max()
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/platform/ |
D | ssl_pm.c | 177 else if (TLS1_1_VERSION == ssl->version) in ssl_pm_new()
|