Map INVALID_PADDING from PSA to MbedTLS error in rsa_decrypt_wrap()

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
Neil Armstrong 2022-02-24 15:23:42 +01:00
parent 0d46786034
commit f47135756c

View File

@ -276,7 +276,14 @@ static int rsa_decrypt_wrap( void *ctx,
NULL, 0, output, osize, olen );
if( status != PSA_SUCCESS )
{
ret = mbedtls_psa_err_translate_pk( status );
if ( status == PSA_ERROR_INVALID_PADDING )
{
ret = MBEDTLS_ERR_RSA_INVALID_PADDING;
}
else
{
ret = mbedtls_psa_err_translate_pk( status );
}
goto cleanup;
}