From f015feced9973c96fa7616970e7136662783400f Mon Sep 17 00:00:00 2001 From: "Derek D. Miller" Date: Fri, 26 Oct 2018 10:56:11 -0500 Subject: [PATCH] Some changes from 'pcd_' to 'psa_drv_' were missed In the comments, some of the changes from `pcd_` to `psa_drv_` omitted the `_drv_` part. Changed them to be consistent --- include/psa/crypto_driver.h | 38 ++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/include/psa/crypto_driver.h b/include/psa/crypto_driver.h index b2e3a1d5f..a52ecc427 100644 --- a/include/psa/crypto_driver.h +++ b/include/psa/crypto_driver.h @@ -52,16 +52,16 @@ typedef uint32_t psa_key_usage_t; /** \defgroup opaque_mac Opaque Message Authentication Code * Generation and authentication of Message Authentication Codes (MACs) using * opaque keys can be done either as a single function call (via the - * `psa_drv_mac_opaque_generate_t` or `psa_mac_opaque_verify_t` functions), or in + * `psa_drv_mac_opaque_generate_t` or `psa_drv_mac_opaque_verify_t` functions), or in * parts using the following sequence: - * - `psa_mac_opaque_setup_t` - * - `psa_mac_opaque_update_t` - * - `psa_mac_opaque_update_t` + * - `psa_drv_mac_opaque_setup_t` + * - `psa_drv_mac_opaque_update_t` + * - `psa_drv_mac_opaque_update_t` * - ... - * - `psa_mac_opaque_finish_t` or `psa_mac_opaque_finish_verify_t` + * - `psa_drv_mac_opaque_finish_t` or `psa_drv_mac_opaque_finish_verify_t` * * If a previously started Opaque MAC operation needs to be terminated, it - * should be done so by the `psa_mac_opaque_abort_t`. Failure to do so may + * should be done so by the `psa_drv_mac_opaque_abort_t`. Failure to do so may * result in allocated resources not being freed or in other undefined * behavior. */ @@ -242,16 +242,16 @@ typedef struct { /** \defgroup transparent_mac Transparent Message Authentication Code * Generation and authentication of Message Authentication Codes (MACs) using * transparent keys can be done either as a single function call (via the - * `psa_drv_mac_transparent_generate_t` or `psa_mac_transparent_verify_t` + * `psa_drv_mac_transparent_generate_t` or `psa_drv_mac_transparent_verify_t` * functions), or in parts using the following sequence: - * - `psa_mac_transparent_setup_t` - * - `psa_mac_transparent_update_t` - * - `psa_mac_transparent_update_t` + * - `psa_drv_mac_transparent_setup_t` + * - `psa_drv_mac_transparent_update_t` + * - `psa_drv_mac_transparent_update_t` * - ... - * - `psa_mac_transparent_finish_t` or `psa_mac_transparent_finish_verify_t` + * - `psa_drv_mac_transparent_finish_t` or `psa_drv_mac_transparent_finish_verify_t` * * If a previously started Transparent MAC operation needs to be terminated, it - * should be done so by the `psa_mac_transparent_abort_t`. Failure to do so may + * should be done so by the `psa_drv_mac_transparent_abort_t`. Failure to do so may * result in allocated resources not being freed or in other undefined * behavior. * @@ -452,7 +452,7 @@ typedef psa_status_t (*psa_drv_mac_transparent_verify_t)(const uint8_t *p_input, * - `psa_drv_cipher_opaque_finish_t` * If a previously started Opaque Cipher operation needs to be terminated, it - * should be done so by the `psa_cipher_opaque_abort_t`. Failure to do so may + * should be done so by the `psa_drv_cipher_opaque_abort_t`. Failure to do so may * result in allocated resources not being freed or in other undefined * behavior. * @@ -628,7 +628,7 @@ typedef struct { * - `psa_drv_cipher_transparent_finish_t` * If a previously started Transparent Cipher operation needs to be terminated, - * it should be done so by the `psa_cipher_transparent_abort_t`. Failure to do + * it should be done so by the `psa_drv_cipher_transparent_abort_t`. Failure to do * so may result in allocated resources not being freed or in other undefined * behavior. */ @@ -778,14 +778,14 @@ typedef psa_status_t (*psa_drv_cipher_transparent_abort_t)(psa_drv_cipher_transp * * Generation and authentication of Message Digests (aka hashes) must be done * in parts using the following sequence: - * - `psa_hash_setup_t` - * - `psa_hash_update_t` + * - `psa_drv_hash_setup_t` + * - `psa_drv_hash_update_t` * - ... - * - `psa_hash_finish_t` + * - `psa_drv_hash_finish_t` * * If a previously started Message Digest operation needs to be terminated - * before the `psa_hash_finish_t` operation is complete, it should be aborted - * by the `psa_hash_abort_t`. Failure to do so may result in allocated + * before the `psa_drv_hash_finish_t` operation is complete, it should be aborted + * by the `psa_drv_hash_abort_t`. Failure to do so may result in allocated * resources not being freed or in other undefined behavior. */ /**@{*/