Home
last modified time | relevance | path

Searched refs:TLS1_3_VERSION (Results 1 – 14 of 14) sorted by relevance

/dragonfly/crypto/libressl/ssl/
H A Dssl_versions.c142 max_version = TLS1_3_VERSION; in ssl_enabled_tls_version_range()
160 min_version = TLS1_3_VERSION; in ssl_enabled_tls_version_range()
162 if ((options & SSL_OP_NO_TLSv1_3) && min_version < TLS1_3_VERSION) in ssl_enabled_tls_version_range()
182 if (max_version < TLS1_3_VERSION) in ssl_enabled_tls_version_range()
184 if (min_version < TLS1_3_VERSION) in ssl_enabled_tls_version_range()
185 min_version = TLS1_3_VERSION; in ssl_enabled_tls_version_range()
221 version == TLS1_2_VERSION || version == TLS1_3_VERSION) in ssl_tls_version()
310 if (peer_tls_version >= TLS1_3_VERSION) in ssl_max_shared_version()
311 shared_version = TLS1_3_VERSION; in ssl_max_shared_version()
H A Dssl_tlsext.c196 (s->s3->hs.our_max_tls_version >= TLS1_3_VERSION); in tlsext_supportedgroups_client_needs()
614 if (ssl_effective_tls_version(s) < TLS1_3_VERSION) in tlsext_sigalgs_client_parse()
996 if (s->s3->hs.negotiated_tls_version >= TLS1_3_VERSION && in tlsext_ocsp_server_needs()
1034 if (ssl_effective_tls_version(s) >= TLS1_3_VERSION) { in tlsext_ocsp_client_parse()
1470 if (s->s3->hs.our_max_tls_version < TLS1_3_VERSION) in tlsext_keyshare_server_parse()
1649 return CBB_add_u16(cbb, TLS1_3_VERSION); in tlsext_versions_server_build()
1661 if (selected_version < TLS1_3_VERSION) { in tlsext_versions_client_parse()
1793 s->s3->hs.our_max_tls_version >= TLS1_3_VERSION); in tlsext_psk_kex_modes_client_needs()
2262 if (tls_version >= TLS1_3_VERSION && in tlsext_build()
2357 if (tls_version >= TLS1_3_VERSION && is_server && in tlsext_parse()
[all …]
H A Dssl_methods.c247 .version = TLS1_3_VERSION,
249 .max_tls_version = TLS1_3_VERSION,
291 .version = TLS1_3_VERSION,
293 .max_tls_version = TLS1_3_VERSION,
566 if (version == TLS1_3_VERSION) in ssl_get_method()
H A Dssl_sigalgs.c203 if (tls_version >= TLS1_3_VERSION) { in ssl_sigalgs_for_version()
313 if (s->s3->hs.negotiated_tls_version < TLS1_3_VERSION) in ssl_sigalg_pkey_ok()
345 if (s->s3->hs.negotiated_tls_version < TLS1_3_VERSION && in ssl_sigalg_select()
H A Dssl_ciphers.c48 return (min_ver <= TLS1_3_VERSION && TLS1_3_VERSION <= max_ver); in ssl_cipher_allowed_in_tls_version_range()
H A Dtls13_server.c96 return (max_version < TLS1_3_VERSION); in tls13_client_hello_is_legacy()
166 if (tls13_client_hello_is_legacy(cbs) || s->version < TLS1_3_VERSION) { in tls13_client_hello_process()
171 ctx->hs->negotiated_tls_version = TLS1_3_VERSION; in tls13_client_hello_process()
306 if (s->method->version < TLS1_3_VERSION) in tls13_client_hello_recv()
483 if (s->method->version < TLS1_3_VERSION) in tls13_client_hello_retry_recv()
H A Dtls13_client.c68 ctx->hs->our_max_tls_version >= TLS1_3_VERSION) { in tls13_client_init()
187 return (selected_version < TLS1_3_VERSION); in tls13_server_hello_is_legacy()
231 if (ctx->hs->our_max_tls_version >= TLS1_3_VERSION) { in tls13_server_hello_process()
278 if (ctx->hs->tls13.server_version != TLS1_3_VERSION || in tls13_server_hello_process()
H A Dtls13_handshake.c562 if (ctx->ssl->method->version < TLS1_3_VERSION) in tls13_handshake_recv_action()
H A Dssl_lib.c1877 if (s->internal->tls13 != NULL && s->version == TLS1_3_VERSION) { in SSL_export_keying_material()
2377 if (s->s3->hs.negotiated_tls_version >= TLS1_3_VERSION) in ssl_should_update_external_cache()
2402 if (s->s3->hs.negotiated_tls_version < TLS1_3_VERSION) in ssl_should_update_internal_cache()
2780 case TLS1_3_VERSION: in ssl_version_string()
/dragonfly/crypto/libressl/apps/openssl/
H A Dciphers.c77 .value = TLS1_3_VERSION,
H A Ds_cb.c388 case TLS1_3_VERSION: in msg_cb()
458 version == TLS1_3_VERSION || version == DTLS1_VERSION || in msg_cb()
H A Ds_client.c350 s_client_config.min_version = TLS1_3_VERSION; in s_client_opt_protocol_version_tls1_3()
351 s_client_config.max_version = TLS1_3_VERSION; in s_client_opt_protocol_version_tls1_3()
H A Ds_server.c395 s_server_config.min_version = TLS1_3_VERSION; in s_server_opt_protocol_version_tls1_3()
396 s_server_config.max_version = TLS1_3_VERSION; in s_server_opt_protocol_version_tls1_3()
/dragonfly/crypto/libressl/include/openssl/
H A Dtls1.h167 #define TLS1_3_VERSION 0x0304 macro