1
0
mirror of https://github.com/ARMmbed/mbedtls.git synced 2025-05-10 00:49:04 +08:00

Do not generate new random number while receiving HRR

Signed-off-by: BensonLiou <momo1208@gmail.com>
This commit is contained in:
BensonLiou 2024-01-11 15:28:17 +08:00
parent f149cd1a3a
commit 35178fe7ec

View File

@ -795,6 +795,10 @@ static int ssl_prepare_client_hello(mbedtls_ssl_context *ssl)
#if defined(MBEDTLS_SSL_PROTO_DTLS) #if defined(MBEDTLS_SSL_PROTO_DTLS)
if ((ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) || if ((ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) ||
(ssl->handshake->cookie == NULL)) (ssl->handshake->cookie == NULL))
#endif
{
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
if (ssl->handshake->hello_retry_request_count == 0)
#endif #endif
{ {
ret = ssl_generate_random(ssl); ret = ssl_generate_random(ssl);
@ -803,6 +807,7 @@ static int ssl_prepare_client_hello(mbedtls_ssl_context *ssl)
return ret; return ret;
} }
} }
}
/* /*
* Prepare session identifier. At that point, the length of the session * Prepare session identifier. At that point, the length of the session