Fix return error values description
Fix return PSA_ERROR_INVALID_ARGUMENT description for psa_set_key_lifetime()
and psa_get_key_lifetime()
diff --git a/include/psa/crypto.h b/include/psa/crypto.h
index 07c1da1..6584032 100644
--- a/include/psa/crypto.h
+++ b/include/psa/crypto.h
@@ -604,8 +604,7 @@
* \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 @@
* 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);