summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorschwarze <>2023-09-13 13:46:52 +0000
committerschwarze <>2023-09-13 13:46:52 +0000
commitd6f7e584d21473293ceddc212158ac3930e744a7 (patch)
tree1288be46befef6a7a04c36387e7f4b1b9588ca4e /src/lib
parent624522000820b1abd086f2a01639127ab9186e5e (diff)
downloadopenbsd-d6f7e584d21473293ceddc212158ac3930e744a7.tar.gz
openbsd-d6f7e584d21473293ceddc212158ac3930e744a7.tar.bz2
openbsd-d6f7e584d21473293ceddc212158ac3930e744a7.zip
minor markup fixes: add one missing .Dv and one missing .Vt macro
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.312
1 files changed, 8 insertions, 4 deletions
diff --git a/src/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 b/src/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3
index 559c68bd6e..86286fab55 100644
--- a/src/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3
+++ b/src/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: EVP_PKEY_CTX_set_hkdf_md.3,v 1.2 2022/05/06 10:10:10 tb Exp $ 1.\" $OpenBSD: EVP_PKEY_CTX_set_hkdf_md.3,v 1.3 2023/09/13 13:46:52 schwarze Exp $
2.\" full merge up to: OpenSSL 1cb7eff4 Sep 10 13:56:40 2019 +0100 2.\" full merge up to: OpenSSL 1cb7eff4 Sep 10 13:56:40 2019 +0100
3.\" 3.\"
4.\" This file was written by Alessandro Ghedini <alessandro@ghedini.me>, 4.\" This file was written by Alessandro Ghedini <alessandro@ghedini.me>,
@@ -49,7 +49,7 @@
49.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 49.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50.\" OF THE POSSIBILITY OF SUCH DAMAGE. 50.\" OF THE POSSIBILITY OF SUCH DAMAGE.
51.\" 51.\"
52.Dd $Mdocdate: May 6 2022 $ 52.Dd $Mdocdate: September 13 2023 $
53.Dt EVP_PKEY_CTX_SET_HKDF_MD 3 53.Dt EVP_PKEY_CTX_SET_HKDF_MD 3
54.Os 54.Os
55.Sh NAME 55.Sh NAME
@@ -90,7 +90,9 @@
90.Fa "int infolen" 90.Fa "int infolen"
91.Fc 91.Fc
92.Sh DESCRIPTION 92.Sh DESCRIPTION
93The EVP_PKEY_HKDF algorithm implements the HKDF key derivation function. 93The
94.Dv EVP_PKEY_HKDF
95algorithm implements the HKDF key derivation function.
94HKDF follows the "extract-then-expand" paradigm, where the KDF logically 96HKDF follows the "extract-then-expand" paradigm, where the KDF logically
95consists of two modules. 97consists of two modules.
96The first stage takes the input keying material and "extracts" from it a 98The first stage takes the input keying material and "extracts" from it a
@@ -106,7 +108,9 @@ There are three modes that are currently defined:
106This is the default mode. 108This is the default mode.
107Calling 109Calling
108.Xr EVP_PKEY_derive 3 110.Xr EVP_PKEY_derive 3
109on an EVP_PKEY_CTX set up for HKDF will perform an extract followed by 111on an
112.Vt EVP_PKEY_CTX
113set up for HKDF will perform an extract followed by
110an expand operation in one go. 114an expand operation in one go.
111The derived key returned will be the result after the expand operation. 115The derived key returned will be the result after the expand operation.
112The intermediate fixed-length pseudorandom key K is not returned. 116The intermediate fixed-length pseudorandom key K is not returned.