From b2470d9bbfb86d0bdd2f7b6c8939736aedf2d4bd Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Mon, 25 Mar 2024 09:37:47 +0100 Subject: [PATCH] pk: fix typos in description of mbedtls_pk_setup_opaque() Signed-off-by: Valerio Setti --- include/mbedtls/pk.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mbedtls/pk.h b/include/mbedtls/pk.h index a3b13633d4..a23927088c 100644 --- a/include/mbedtls/pk.h +++ b/include/mbedtls/pk.h @@ -361,10 +361,10 @@ int mbedtls_pk_setup(mbedtls_pk_context *ctx, const mbedtls_pk_info_t *info); /** * \brief Initialize a PK context to wrap a PSA key. * - * This function helps creating a PK context which wraps a PSA key. The PSA wrapped - * key must be an EC or RSA key pair (DH is not suported in PK module). + * This function creates a PK context which wraps a PSA key. The PSA wrapped + * key must be an EC or RSA key pair (DH is not suported in the PK module). * - * Under the hood PSA functions are used to perform the required + * Under the hood PSA functions will be used to perform the required * operations and, based on the key type, used algorithms will be: * * EC: * * verify, verify_ext, sign, sign_ext: ECDSA.