From e18ceda105bca9108efd9e597e116a1a3de8ffb3 Mon Sep 17 00:00:00 2001 From: Pauli Date: Tue, 3 Aug 2021 22:29:03 +1000 Subject: [PATCH] doc: reorder the string and int extract/expand param values Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/16203) --- doc/man7/EVP_KDF-HKDF.pod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man7/EVP_KDF-HKDF.pod b/doc/man7/EVP_KDF-HKDF.pod index ffe1c5ae043..5ef09aed36f 100644 --- a/doc/man7/EVP_KDF-HKDF.pod +++ b/doc/man7/EVP_KDF-HKDF.pod @@ -49,7 +49,7 @@ There are three modes that are currently defined: =over 4 -=item B "EXTRACT_AND_EXPAND" +=item "EXTRACT_AND_EXPAND" or B This is the default mode. Calling L on an EVP_KDF_CTX set up for HKDF will perform an extract followed by an expand operation in one go. @@ -59,7 +59,7 @@ intermediate fixed-length pseudorandom key K is not returned. In this mode the digest, key, salt and info values must be set before a key is derived otherwise an error will occur. -=item B "EXTRACT_ONLY" +=item "EXTRACT_ONLY" or B In this mode calling L will just perform the extract operation. The value returned will be the intermediate fixed-length pseudorandom @@ -69,7 +69,7 @@ up by calling EVP_KDF_CTX_get_kdf_size() after setting the mode and digest. The digest, key and salt values must be set before a key is derived otherwise an error will occur. -=item B "EXPAND_ONLY" +=item "EXPAND_ONLY" or B In this mode calling L will just perform the expand operation. The input key should be set to the intermediate fixed-length -- 2.47.3