From ebf6281ce66351417e2d0772534197d8dd6e6f57 Mon Sep 17 00:00:00 2001 From: Przemek Stekiel Date: Wed, 11 May 2022 14:16:05 +0200 Subject: [PATCH] crypto_values.h: fix description Signed-off-by: Przemek Stekiel --- include/psa/crypto_values.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/psa/crypto_values.h b/include/psa/crypto_values.h index 2b315c118..46680253d 100644 --- a/include/psa/crypto_values.h +++ b/include/psa/crypto_values.h @@ -1778,7 +1778,6 @@ * "extract" step. * You must pass #PSA_KEY_DERIVATION_INPUT_SALT * before #PSA_KEY_DERIVATION_INPUT_SECRET. - * starting to generate output. * * \warning HKDF-Extract is not meant to be used on its own. PSA_ALG_HKDF * should be used instead if possible. PSA_ALG_HKDF_EXTRACT is provided @@ -1839,7 +1838,7 @@ */ #define PSA_ALG_HKDF_EXPAND(hash_alg) \ (PSA_ALG_HKDF_EXPAND_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) -/** Whether the specified algorithm is an HKDF-Extract algorithm. +/** Whether the specified algorithm is an HKDF-Expand algorithm. * * HKDF-Expand is a family of key derivation algorithms that are based * on a hash function and the HMAC construction.