1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

psa: Rename pss_key_owner_id_t to mbedtls_key_owner_id_t

Rename psa_key_owner_id_t to mbedtls_key_owner_id_t to
highlight that this is a Mbed TLS specific type and not
a type defined in the PSA Cryptography API specification.

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron
2020-09-01 15:50:17 +02:00
parent fa7d7af55d
commit 72f65fc6e9
4 changed files with 5 additions and 5 deletions

View File

@@ -52,7 +52,7 @@ typedef uint16_t psa_key_handle_t;
#if defined(PSA_CRYPTO_SECURE)
/* Building for the PSA Crypto service on a PSA platform. */
/* A key owner is a PSA partition identifier. */
typedef int32_t psa_key_owner_id_t;
typedef int32_t mbedtls_key_owner_id_t;
#endif
#endif /* MBEDTLS_PSA_CRYPTO_KEY_FILE_ID_ENCODES_OWNER */