mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-22 20:10:32 -04:00
Add reference tests with 1.3 ClientHello
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
f83bc798e1
commit
ba71610fa3
@ -3462,6 +3462,19 @@ tls13_srv_max_early_data_size:TEST_EARLY_DATA_HRR:97:0
|
||||
# 0002 - length of named_curve_list / named_group_list
|
||||
# 0017 - secp256r1 aka NIST P-256
|
||||
# ...
|
||||
# 002b - supported version (for TLS 1.3)
|
||||
# 0003 - extension length
|
||||
# 02 - length of versions
|
||||
# 0304 - TLS 1.3 ("SSL 3.4")
|
||||
# ...
|
||||
# 000d - signature algorithms
|
||||
# 0004 - extension length
|
||||
# 0002 - SignatureSchemeList length
|
||||
# 0403 - ecdsa_secp256r1_sha256
|
||||
# ...
|
||||
# 0033 - key share
|
||||
# 0002 - extension length
|
||||
# 0000 - length of client_shares (empty is valid)
|
||||
#
|
||||
# Note: currently our TLS "1.3 or 1.2" code requires extension length to be
|
||||
# present even it it's 0. This is not strictly compliant but doesn't matter
|
||||
@ -3474,9 +3487,17 @@ tls13_srv_max_early_data_size:TEST_EARLY_DATA_HRR:97:0
|
||||
# supported_groups extension is present, see
|
||||
# https://github.com/Mbed-TLS/mbedtls/issues/7458
|
||||
#
|
||||
# For TLS 1.3 with ephemeral key exchange, mandatory extensions are:
|
||||
# - supported versions (as for all of TLS 1.3)
|
||||
# - supported groups
|
||||
# - key share
|
||||
# - signature algorithms
|
||||
# (see ssl_tls13_client_hello_has_exts_for_ephemeral_key_exchange()).
|
||||
#
|
||||
# Note: cccc is currently not assigned, so can be used get a consistent
|
||||
# "no matching ciphersuite" behaviour regardless of the configuration.
|
||||
# c02b is MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 (1.2)
|
||||
# 1301 is MBEDTLS_TLS1_3_AES_128_GCM_SHA256 (1.3)
|
||||
|
||||
# See "ClientHello breakdown" above
|
||||
# MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 with secp256r1
|
||||
@ -3485,6 +3506,19 @@ depends_on:MBEDTLS_SSL_PROTO_TLS1_2:MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED:MBE
|
||||
inject_client_content_on_the_wire:MBEDTLS_PK_ECDSA:MBEDTLS_SSL_CLIENT_HELLO:"16030300370100003303030123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef000002c02b01000008000a000400020017":"<= parse client hello":0
|
||||
|
||||
# See "ClientHello breakdown" above
|
||||
# Same as the above test with s/c02b/cccc/ as the ciphersuite
|
||||
Inject ClientHello - TLS 1.2 unknown ciphersuite (for reference)
|
||||
depends_on:MBEDTLS_SSL_PROTO_TLS1_2:MBEDTLS_RSA_C
|
||||
inject_client_content_on_the_wire:MBEDTLS_PK_RSA:MBEDTLS_SSL_CLIENT_HELLO:"160303002f0100002b03030123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef000002cccc01000000":"got no ciphersuites in common":MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE
|
||||
|
||||
# See "ClientHello breakdown" above
|
||||
# ephemeral with secp256r1 + MBEDTLS_TLS1_3_AES_128_GCM_SHA256
|
||||
Inject ClientHello - TLS 1.3 good (for reference)
|
||||
depends_on:MBEDTLS_SSL_PROTO_TLS1_3:MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED:MBEDTLS_SSL_HAVE_AES:MBEDTLS_MD_CAN_SHA256:MBEDTLS_SSL_HAVE_GCM:MBEDTLS_ECP_HAVE_SECP256R1
|
||||
inject_client_content_on_the_wire:MBEDTLS_PK_ECDSA:MBEDTLS_SSL_CLIENT_HELLO:"160303004c0100004803030123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef00000213010100001d000a000400020017002b0003020304000d000400020403003300020000":"key exchange mode\: ephemeral":0
|
||||
|
||||
# See "ClientHello breakdown" above
|
||||
# Same as the above test with s/1301/cccc/ as the ciphersuite
|
||||
Inject ClientHello - TLS 1.3 unknown ciphersuite (for reference)
|
||||
depends_on:MBEDTLS_SSL_PROTO_TLS1_3:MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED:MBEDTLS_SSL_HAVE_AES:MBEDTLS_MD_CAN_SHA256:MBEDTLS_SSL_HAVE_GCM:MBEDTLS_ECP_HAVE_SECP256R1
|
||||
inject_client_content_on_the_wire:MBEDTLS_PK_ECDSA:MBEDTLS_SSL_CLIENT_HELLO:"160303004c0100004803030123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef000002cccc0100001d000a000400020017002b0003020304000d000400020403003300020000":"No matched ciphersuite":MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE
|
||||
|
Loading…
x
Reference in New Issue
Block a user