Pacify check-names.sh

This commit is contained in:
Gilles Peskine 2019-03-06 18:29:57 +01:00
parent c079f5692d
commit 32668ce268
2 changed files with 13 additions and 13 deletions

View file

@ -356,7 +356,7 @@ typedef psa_status_t (*psa_drv_accel_mac_verify_t)(const uint8_t *p_input,
* - `psa_drv_accel_cipher_update_t` * - `psa_drv_accel_cipher_update_t`
* - ... * - ...
* - `psa_drv_accel_cipher_finish_t` * - `psa_drv_accel_cipher_finish_t`
*
* If a previously started hardware-accelerated Cipher operation needs to be * If a previously started hardware-accelerated Cipher operation needs to be
* terminated, it should be done so by the `psa_drv_accel_cipher_abort_t`. * terminated, it should be done so by the `psa_drv_accel_cipher_abort_t`.
* Failure to do so may result in allocated resources not being freed or in * Failure to do so may result in allocated resources not being freed or in
@ -554,7 +554,7 @@ typedef psa_status_t (*psa_drv_accel_cipher_abort_t)(psa_drv_accel_cipher_contex
* the `ciphertext` buffer * the `ciphertext` buffer
* *
* \retval #PSA_SUCCESS * \retval #PSA_SUCCESS
*
*/ */
typedef psa_status_t (*psa_drv_accel_aead_encrypt_t)(const uint8_t *p_key, typedef psa_status_t (*psa_drv_accel_aead_encrypt_t)(const uint8_t *p_key,
size_t key_length, size_t key_length,

View file

@ -136,7 +136,7 @@ typedef psa_status_t (*psa_drv_se_mac_finish_verify_t)(void *p_context,
/** \brief A function that aborts a previous started secure element MAC /** \brief A function that aborts a previous started secure element MAC
* operation * operation
*
* \param[in,out] p_context A hardware-specific structure for the previously * \param[in,out] p_context A hardware-specific structure for the previously
* started MAC operation to be aborted * started MAC operation to be aborted
*/ */
@ -247,7 +247,7 @@ typedef struct {
* - `psa_drv_se_cipher_update_t` * - `psa_drv_se_cipher_update_t`
* - ... * - ...
* - `psa_drv_se_cipher_finish_t` * - `psa_drv_se_cipher_finish_t`
*
* If a previously started secure element Cipher operation needs to be * If a previously started secure element Cipher operation needs to be
* terminated, it should be done so by the `psa_drv_se_cipher_abort_t`. Failure * terminated, it should be done so by the `psa_drv_se_cipher_abort_t`. Failure
* to do so may result in allocated resources not being freed or in other * to do so may result in allocated resources not being freed or in other
@ -791,15 +791,15 @@ typedef psa_status_t (*psa_drv_se_export_key_t)(psa_key_slot_number_t key,
* \param[out] p_pubkey_length Upon successful completion, will contain the * \param[out] p_pubkey_length Upon successful completion, will contain the
* size of the data placed in `p_pubkey_out`. * size of the data placed in `p_pubkey_out`.
*/ */
typedef psa_status_t (*psa_drv_se_generate_key_t) (psa_key_slot_number_t key_slot, typedef psa_status_t (*psa_drv_se_generate_key_t)(psa_key_slot_number_t key_slot,
psa_key_type_t type, psa_key_type_t type,
psa_key_usage_t usage, psa_key_usage_t usage,
size_t bits, size_t bits,
const void *extra, const void *extra,
size_t extra_size, size_t extra_size,
uint8_t *p_pubkey_out, uint8_t *p_pubkey_out,
size_t pubkey_out_size, size_t pubkey_out_size,
size_t *p_pubkey_length); size_t *p_pubkey_length);
/** /**
* \brief A struct containing all of the function pointers needed to for secure * \brief A struct containing all of the function pointers needed to for secure