From 29c490db9796cb21a2eebadf38c0e9447f62703f Mon Sep 17 00:00:00 2001 From: Raef Coles Date: Thu, 13 Oct 2022 14:16:35 +0100 Subject: [PATCH] Update LMS calculate_public_key docs To avoid the word "generate" Signed-off-by: Raef Coles --- include/mbedtls/lms.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mbedtls/lms.h b/include/mbedtls/lms.h index 7505ae462d..5e03d9b5f9 100644 --- a/include/mbedtls/lms.h +++ b/include/mbedtls/lms.h @@ -379,14 +379,14 @@ int mbedtls_lms_generate_private_key( mbedtls_lms_private_t *ctx, size_t seed_size ); /** - * \brief This function generates an LMS public key from a + * \brief This function calculates an LMS public key from a * LMS context that already contains a private key. * * \note Before this function is called, the context must * have been initialized and the context must contain * a private key. * - * \param ctx The initialized LMS public context to generate the key + * \param ctx The initialized LMS public context to calculate the key * from and store it into. * * \param priv_ctx The LMS private context to read the private key