mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-29 22:24:16 +01:00
Documentation clarification after review
Signed-off-by: Steven Cooreman <steven.cooreman@silabs.com>
This commit is contained in:
parent
a1ce2f2675
commit
b938b0bb03
@ -759,7 +759,7 @@ static inline int psa_key_id_is_builtin( psa_key_id_t key_id )
|
|||||||
( key_id <= MBEDTLS_PSA_KEY_ID_BUILTIN_MAX ) );
|
( key_id <= MBEDTLS_PSA_KEY_ID_BUILTIN_MAX ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Platform function to obtain the location and slot of a built-in key.
|
/** Platform function to obtain the location and slot number of a built-in key.
|
||||||
*
|
*
|
||||||
* An application-specific implementation of this function must be provided if
|
* An application-specific implementation of this function must be provided if
|
||||||
* #MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS is enabled. This would typically be provided
|
* #MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS is enabled. This would typically be provided
|
||||||
@ -781,7 +781,7 @@ static inline int psa_key_id_is_builtin( psa_key_id_t key_id )
|
|||||||
* and with what lifecycle the key can be used.
|
* and with what lifecycle the key can be used.
|
||||||
* \param[out] slot_number On success, the slot number known to the driver
|
* \param[out] slot_number On success, the slot number known to the driver
|
||||||
* registered at the lifetime location reported
|
* registered at the lifetime location reported
|
||||||
* through \p location which corresponds to the
|
* through \p lifetime which corresponds to the
|
||||||
* requested built-in key.
|
* requested built-in key.
|
||||||
*
|
*
|
||||||
* \retval #PSA_SUCCESS
|
* \retval #PSA_SUCCESS
|
||||||
|
@ -229,8 +229,8 @@ psa_status_t psa_driver_wrapper_verify_hash(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get the key buffer size for the key material of a generated key in the
|
/** Get the key buffer size required to store the key material of a key
|
||||||
* case of an opaque driver without storage.
|
* associated with an opaque driver without storage.
|
||||||
*
|
*
|
||||||
* \param[in] attributes The key attributes.
|
* \param[in] attributes The key attributes.
|
||||||
* \param[out] key_buffer_size Minimum buffer size to contain the key material
|
* \param[out] key_buffer_size Minimum buffer size to contain the key material
|
||||||
|
@ -287,7 +287,6 @@ static psa_status_t psa_load_builtin_key_into_slot( psa_key_slot_t *slot )
|
|||||||
size_t key_buffer_size = 0;
|
size_t key_buffer_size = 0;
|
||||||
size_t key_buffer_length = 0;
|
size_t key_buffer_length = 0;
|
||||||
|
|
||||||
/* Load keys in the 'builtin' range through their own interface */
|
|
||||||
if( ! psa_key_id_is_builtin(
|
if( ! psa_key_id_is_builtin(
|
||||||
MBEDTLS_SVC_KEY_ID_GET_KEY_ID( slot->attr.id ) ) )
|
MBEDTLS_SVC_KEY_ID_GET_KEY_ID( slot->attr.id ) ) )
|
||||||
{
|
{
|
||||||
@ -363,6 +362,7 @@ psa_status_t psa_get_and_lock_key_slot( mbedtls_svc_key_id_t key,
|
|||||||
|
|
||||||
status = PSA_ERROR_DOES_NOT_EXIST;
|
status = PSA_ERROR_DOES_NOT_EXIST;
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS)
|
#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS)
|
||||||
|
/* Load keys in the 'builtin' range through their own interface */
|
||||||
status = psa_load_builtin_key_into_slot( *p_slot );
|
status = psa_load_builtin_key_into_slot( *p_slot );
|
||||||
#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */
|
#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user