From bf1af30ec9957476652b13be422be491ce9b36c5 Mon Sep 17 00:00:00 2001 From: Waleed Elmelegy Date: Wed, 20 Nov 2024 15:32:37 +0000 Subject: [PATCH] Correct typos in iop export public-key headers Signed-off-by: Waleed Elmelegy --- tf-psa-crypto/include/psa/crypto.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tf-psa-crypto/include/psa/crypto.h b/tf-psa-crypto/include/psa/crypto.h index bc52e39f50..4d84a8fab4 100644 --- a/tf-psa-crypto/include/psa/crypto.h +++ b/tf-psa-crypto/include/psa/crypto.h @@ -5550,10 +5550,10 @@ psa_status_t psa_generate_key_iop_abort( */ /** - * The type of the state data structure for interruptible key generation + * The type of the state data structure for interruptible public-key export * operations. * - * Before calling any function on an interruptible key generation object, the + * Before calling any function on an interruptible export public-key object, the * application must initialize it by any of the following means: * - Set the structure to all-bits-zero, for example: * \code @@ -5569,7 +5569,7 @@ psa_status_t psa_generate_key_iop_abort( * \code * psa_export_public_key_iop_t operation = PSA_EXPORT_PUBLIC_KEY_IOP_INIT; * \endcode - * - Assign the result of the function psa_generate_key_iop_init() to the + * - Assign the result of the function psa_export_public_key_iop_init() to the * structure, for example: * \code * psa_export_public_key_iop_t operation; @@ -5583,7 +5583,7 @@ psa_status_t psa_generate_key_iop_abort( typedef struct psa_export_public_key_iop_s psa_export_public_key_iop_t; /** - * \brief Get the number of ops that a key generation + * \brief Get the number of ops that an export public-key * operation has taken so far. If the operation has * completed, then this will represent the number * of ops required for the entire operation. After