1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-12-24 17:41:01 +03:00

Fix style issue in rsa_decrypt_wrap()

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

View File

@@ -273,7 +273,7 @@ static int rsa_decrypt_wrap( void *ctx,
}
status = psa_asymmetric_decrypt( key_id, psa_sig_md, input, ilen,
NULL, 0, output, osize, olen);
NULL, 0, output, osize, olen );
if( status != PSA_SUCCESS )
{
ret = mbedtls_psa_err_translate_pk( status );