Improve psa_rsa_decode_md_type()

Remove a case that cannot be triggered as PSA_ALG_SIGN_GET_HASH always
returns 0 for raw algorithms.

Signed-off-by: Janos Follath <janos.follath@arm.com>
This commit is contained in:
Janos Follath 2021-06-21 10:56:29 +01:00
parent 3dd3ff0096
commit ab97e003f3

View file

@ -368,11 +368,6 @@ static psa_status_t psa_rsa_decode_md_type( psa_algorithm_t alg,
if( mbedtls_md_get_size( md_info ) != hash_length )
return( PSA_ERROR_INVALID_ARGUMENT );
}
else
{
if( hash_alg != 0 )
return( PSA_ERROR_INVALID_ARGUMENT );
}
return( PSA_SUCCESS );
}