mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-31 10:20:45 +00:00
Allow hybrid TLS 1.3 + TLS 1.2 configuration
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
parent
fbd9f99f10
commit
e1d3f06399
@ -911,8 +911,13 @@ static int ssl_conf_version_check( const mbedtls_ssl_context *ssl )
|
|||||||
#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
||||||
if( mbedtls_ssl_conf_is_hybrid_tls12_tls13( conf ) )
|
if( mbedtls_ssl_conf_is_hybrid_tls12_tls13( conf ) )
|
||||||
{
|
{
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "Hybrid TLS 1.2 + TLS 1.3 configurations are not yet supported" ) );
|
if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
|
||||||
return( MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE );
|
{
|
||||||
|
MBEDTLS_SSL_DEBUG_MSG( 1, ( "DTLS not yet supported in Hybrid TLS 1.3 + TLS 1.2" ) );
|
||||||
|
return( MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE );
|
||||||
|
}
|
||||||
|
MBEDTLS_SSL_DEBUG_MSG( 4, ( "The SSL configuration is TLS 1.3 or TLS 1.2." ) );
|
||||||
|
return( 0 );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -9630,16 +9630,6 @@ run_test "TLS 1.3: Test gnutls tls1_3 feature" \
|
|||||||
-c "Version: TLS1.3"
|
-c "Version: TLS1.3"
|
||||||
|
|
||||||
# TLS1.3 test cases
|
# TLS1.3 test cases
|
||||||
requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_2
|
|
||||||
requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_3
|
|
||||||
skip_handshake_stage_check
|
|
||||||
run_test "TLS 1.3: Not supported version check: tls12 and tls13" \
|
|
||||||
"$P_SRV debug_level=1" \
|
|
||||||
"$P_CLI debug_level=1 min_version=tls12 max_version=tls13" \
|
|
||||||
1 \
|
|
||||||
-c "SSL - The requested feature is not available" \
|
|
||||||
-c "Hybrid TLS 1.2 + TLS 1.3 configurations are not yet supported"
|
|
||||||
|
|
||||||
requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_3
|
requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_3
|
||||||
skip_handshake_stage_check
|
skip_handshake_stage_check
|
||||||
run_test "TLS 1.3: No server support" \
|
run_test "TLS 1.3: No server support" \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user