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

Fix return error values description

Fix return PSA_ERROR_INVALID_ARGUMENT description for psa_set_key_lifetime()
and psa_get_key_lifetime()
This commit is contained in:
mohammad1603
2018-04-17 00:40:08 -07:00
committed by itayzafrir
parent ea0500936e
commit a7d245a4a2

View File

@@ -604,8 +604,7 @@ typedef uint32_t psa_key_lifetime_t;
* \retval PSA_SUCCESS
* Success.
* \retval PSA_ERROR_INVALID_ARGUMENT
* The key slot is invalid,
* or the key data is not correctly formatted.
* The key slot is invalid.
*/
psa_status_t psa_get_key_lifetime(psa_key_slot_t key,
psa_key_lifetime_t *lifetime);
@@ -623,7 +622,7 @@ psa_status_t psa_get_key_lifetime(psa_key_slot_t key,
* Success.
* \retval PSA_ERROR_INVALID_ARGUMENT
* The key slot is invalid,
* or the key data is not correctly formatted.
* or the lifetime value is invalid.
*/
psa_status_t psa_set_key_lifetime(psa_key_slot_t key,
psa_key_lifetime_t lifetime);