Handle INVALID_SIGNATURE instead of INVALID_PADDING in rsa_verify_wrap()

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
Neil Armstrong 2022-03-03 13:16:13 +01:00
parent 82cf804e34
commit 8a44bb47ac

View file

@ -215,9 +215,9 @@ static int rsa_verify_wrap( void *ctx, mbedtls_md_type_t md_alg,
sig, sig_len );
if( status != PSA_SUCCESS )
{
if ( status == PSA_ERROR_INVALID_PADDING )
if ( status == PSA_ERROR_INVALID_SIGNATURE )
{
ret = MBEDTLS_ERR_RSA_INVALID_PADDING;
ret = MBEDTLS_ERR_RSA_VERIFY_FAILED;
}
else
{