From: schwarze Date: Wed, 13 Sep 2023 13:46:52 +0000 (+0000) Subject: minor markup fixes: add one missing .Dv and one missing .Vt macro X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c08f4ee5fa19456a3467f36a602922cdfc9269b1;p=openbsd minor markup fixes: add one missing .Dv and one missing .Vt macro --- diff --git a/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 b/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 index 559c68bd6ee..86286fab554 100644 --- a/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 +++ b/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: EVP_PKEY_CTX_set_hkdf_md.3,v 1.2 2022/05/06 10:10:10 tb Exp $ +.\" $OpenBSD: EVP_PKEY_CTX_set_hkdf_md.3,v 1.3 2023/09/13 13:46:52 schwarze Exp $ .\" full merge up to: OpenSSL 1cb7eff4 Sep 10 13:56:40 2019 +0100 .\" .\" This file was written by Alessandro Ghedini , @@ -49,7 +49,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: May 6 2022 $ +.Dd $Mdocdate: September 13 2023 $ .Dt EVP_PKEY_CTX_SET_HKDF_MD 3 .Os .Sh NAME @@ -90,7 +90,9 @@ .Fa "int infolen" .Fc .Sh DESCRIPTION -The EVP_PKEY_HKDF algorithm implements the HKDF key derivation function. +The +.Dv EVP_PKEY_HKDF +algorithm implements the HKDF key derivation function. HKDF follows the "extract-then-expand" paradigm, where the KDF logically consists of two modules. The first stage takes the input keying material and "extracts" from it a @@ -106,7 +108,9 @@ There are three modes that are currently defined: This is the default mode. Calling .Xr EVP_PKEY_derive 3 -on an EVP_PKEY_CTX set up for HKDF will perform an extract followed by +on an +.Vt EVP_PKEY_CTX +set up for HKDF will perform an extract followed by an expand operation in one go. The derived key returned will be the result after the expand operation. The intermediate fixed-length pseudorandom key K is not returned.