1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Add specialized PSA to mbedtls PK/RSA error mapping function

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
Neil Armstrong
2022-02-21 10:42:29 +01:00
parent cd501f406e
commit ea761963c5
2 changed files with 31 additions and 0 deletions

View File

@ -90,6 +90,10 @@ int mbedtls_pk_psa_err_translate( psa_status_t status );
#if defined(PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY)
int mbedtls_pk_ecp_psa_err_translate( psa_status_t status );
#endif
#if defined(PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY)
int mbedtls_pk_rsa_psa_err_translate( psa_status_t status );
#endif
#endif
/**