Home
last modified time | relevance | path

Searched refs:TLS1_2_VERSION (Results 1 – 16 of 16) sorted by relevance

/external/boringssl/src/ssl/
Dssl_versions.cc33 case TLS1_2_VERSION: in ssl_protocol_version_from_wire()
47 *out = TLS1_2_VERSION; in ssl_protocol_version_from_wire()
60 TLS1_2_VERSION,
105 case TLS1_2_VERSION: in ssl_version_to_string()
187 *out = TLS1_2_VERSION; in set_max_version()
201 {TLS1_2_VERSION, SSL_OP_NO_TLSv1_2},
Dhandshake_client.cc361 if (msg.type != SSL3_MT_SERVER_HELLO || *out != TLS1_2_VERSION) { in parse_server_version()
436 hs->max_version >= TLS1_2_VERSION ? DTLS1_2_VERSION : DTLS1_VERSION; in do_start_connect()
439 hs->max_version >= TLS1_2_VERSION ? TLS1_2_VERSION : hs->max_version; in do_start_connect()
1029 if (ssl_protocol_version(ssl) >= TLS1_2_VERSION) { in do_read_server_key_exchange()
1140 if (ssl_protocol_version(ssl) >= TLS1_2_VERSION) { in do_read_certificate_request()
1421 if (ssl_protocol_version(ssl) >= TLS1_2_VERSION) { in do_send_client_certificate_verify()
1547 SSL_version(ssl) != TLS1_2_VERSION || in can_false_start()
Dssl_test.cc77 {TLS1_2_VERSION, VersionParam::is_tls, "TLS1_2"},
820 ExpectDefaultVersion(TLS1_VERSION, TLS1_2_VERSION, &TLS_method); in TEST()
823 ExpectDefaultVersion(TLS1_2_VERSION, TLS1_2_VERSION, &TLSv1_2_method); in TEST()
824 ExpectDefaultVersion(TLS1_1_VERSION, TLS1_2_VERSION, &DTLS_method); in TEST()
826 ExpectDefaultVersion(TLS1_2_VERSION, TLS1_2_VERSION, &DTLSv1_2_method); in TEST()
1984 {TLS1_2_VERSION, in TEST()
2577 if (!SSL_set_max_proto_version(client_hello->ssl, TLS1_2_VERSION)) { in TEST()
2587 EXPECT_EQ(TLS1_2_VERSION, SSL_version(client.get())); in TEST()
2610 EXPECT_EQ(TLS1_2_VERSION, ctx->conf_max_version); in TEST()
2643 EXPECT_EQ(TLS1_2_VERSION, ctx->conf_max_version); in TEST()
[all …]
Dssl_cipher.cc626 {"TLSv1.2", ~0u, ~0u, ~0u, ~0u, TLS1_2_VERSION},
656 const int is_tls12 = version == TLS1_2_VERSION && !is_dtls; in ssl_cipher_get_evp_aead()
749 return version >= TLS1_2_VERSION ? EVP_sha256() : EVP_md5_sha1(); in ssl_get_handshake_digest()
1531 return TLS1_2_VERSION; in SSL_CIPHER_get_min_version()
1541 return TLS1_2_VERSION; in SSL_CIPHER_get_max_version()
Ds3_lib.cc204 ssl->version = TLS1_2_VERSION; in ssl3_new()
Dssl_aead_ctx.cc172 if (ProtocolVersion() <= TLS1_2_VERSION) { in RecordVersion()
176 return TLS1_2_VERSION; in RecordVersion()
Dtls_method.cc209 TLS1_2_VERSION, in TLSv1_2_method()
Dhandshake_server.cc258 if (client_hello->version >= TLS1_2_VERSION) { in negotiate_version()
873 if (ssl_protocol_version(ssl) >= TLS1_2_VERSION) { in do_send_server_key_exchange()
928 (ssl_protocol_version(ssl) >= TLS1_2_VERSION && in do_send_server_hello_done()
1293 if (ssl_protocol_version(ssl) >= TLS1_2_VERSION) { in do_read_client_certificate_verify()
Dtls_record.cc610 ssl_protocol_version(ssl) > TLS1_2_VERSION) { in OpenRecord()
666 ssl_protocol_version(ssl) > TLS1_2_VERSION) { in SealRecord()
Dtls13_server.cc496 !CBB_add_u16(&body, TLS1_2_VERSION) || in do_send_hello_retry_request()
565 !CBB_add_u16(&body, TLS1_2_VERSION) || in do_send_server_hello()
Dt1_lib.cc989 if (hs->max_version < TLS1_2_VERSION) { in ext_sigalgs_add_clienthello()
2269 if (hs->max_version <= TLS1_2_VERSION) { in ext_supported_versions_add_clienthello()
2587 if (!ssl->quic_transport_params || hs->max_version <= TLS1_2_VERSION) { in ext_quic_transport_params_add_clienthello()
3436 if (ssl_protocol_version(hs->ssl) < TLS1_2_VERSION) { in tls1_parse_peer_sigalgs()
3462 if (ssl_protocol_version(ssl) < TLS1_2_VERSION) { in tls1_choose_signature_algorithm()
Dtls13_client.cc240 if (server_version != TLS1_2_VERSION) { in do_read_server_hello()
/external/boringssl/src/tool/
Dtransport_common.cc228 *out_version = TLS1_2_VERSION; in VersionFromString()
252 sigalg, SSL_version(ssl) != TLS1_2_VERSION)); in PrintConnectionInfo()
/external/curl/lib/vtls/
Dopenssl.c1794 #ifdef TLS1_2_VERSION in ssl_tls_trace()
1795 case TLS1_2_VERSION: in ssl_tls_trace()
1937 case TLS1_2_VERSION: in get_ssl_version_txt()
/external/webrtc/webrtc/base/
Dopensslstreamadapter.cc984 DTLS1_2_VERSION : TLS1_2_VERSION); in SetupSSLContext()
/external/boringssl/src/include/openssl/
Dssl.h592 #define TLS1_2_VERSION 0x0303 macro