fix: dtls13: hello_retry_request type isn't an encrypted message

This commit is contained in:
Marco Oliverio
2022-07-20 14:51:10 +02:00
parent c0fc87342c
commit 066f17faad

View File

@ -234,12 +234,12 @@ static byte Dtls13TypeIsEncrypted(enum HandShakeType hs_type)
case hello_request: case hello_request:
case hello_verify_request: case hello_verify_request:
case client_hello: case client_hello:
case hello_retry_request:
case server_hello: case server_hello:
break; break;
case encrypted_extensions: case encrypted_extensions:
case session_ticket: case session_ticket:
case end_of_early_data: case end_of_early_data:
case hello_retry_request:
case certificate: case certificate:
case server_key_exchange: case server_key_exchange:
case certificate_request: case certificate_request: