Handle INVALID_SIGNATURE instead of INVALID_PADDING in rsa_verify_wrap()
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
parent
82cf804e34
commit
8a44bb47ac
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue