mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-04 04:20:43 +00:00
Ensure tag lengths match in verification
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
f47b0957ab
commit
3a16e014f2
@ -733,8 +733,8 @@ psa_status_t mbedtls_psa_aead_verify(
|
|||||||
{
|
{
|
||||||
*plaintext_length = finish_output_size;
|
*plaintext_length = finish_output_size;
|
||||||
|
|
||||||
if( do_tag_check &&
|
if( do_tag_check && ( tag_length != operation->tag_length ||
|
||||||
mbedtls_psa_safer_memcmp(tag, check_tag, tag_length) != 0 )
|
mbedtls_psa_safer_memcmp(tag, check_tag, tag_length) != 0 ) )
|
||||||
status = PSA_ERROR_INVALID_SIGNATURE;
|
status = PSA_ERROR_INVALID_SIGNATURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user