mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
remove MBEDTLS_ERR_SSL_TICKET_INVALID_KEX_MODE error
Return MBEDTLS_ERR_ERROR_GENERIC_ERROR when ticket_flags are not compatible with advertised key exchange mode. Signed-off-by: Pengyu Lv <pengyu.lv@arm.com>
This commit is contained in:
@ -169,7 +169,7 @@ static int ssl_tls13_offered_psks_check_identity_match_ticket(
|
||||
*
|
||||
* We regard the ticket with incompatible key exchange modes as not match.
|
||||
*/
|
||||
ret = MBEDTLS_ERR_SSL_TICKET_INVALID_KEX_MODE;
|
||||
ret = MBEDTLS_ERR_ERROR_GENERIC_ERROR;
|
||||
MBEDTLS_SSL_DEBUG_TICKET_FLAGS(4,
|
||||
session->ticket_flags);
|
||||
if (mbedtls_ssl_tls13_check_kex_modes(ssl,
|
||||
|
Reference in New Issue
Block a user