From: Pauli Date: Tue, 3 Aug 2021 12:29:03 +0000 (+1000) Subject: doc: reorder the string and int extract/expand param values X-Git-Tag: openssl-3.0.0~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e18ceda105bca9108efd9e597e116a1a3de8ffb3;p=thirdparty%2Fopenssl.git 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) --- 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