diff options
author | schwarze <> | 2023-09-13 13:46:52 +0000 |
---|---|---|
committer | schwarze <> | 2023-09-13 13:46:52 +0000 |
commit | d6f7e584d21473293ceddc212158ac3930e744a7 (patch) | |
tree | 1288be46befef6a7a04c36387e7f4b1b9588ca4e /src/lib | |
parent | 624522000820b1abd086f2a01639127ab9186e5e (diff) | |
download | openbsd-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.3 | 12 |
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 |
93 | The EVP_PKEY_HKDF algorithm implements the HKDF key derivation function. | 93 | The |
94 | .Dv EVP_PKEY_HKDF | ||
95 | algorithm implements the HKDF key derivation function. | ||
94 | HKDF follows the "extract-then-expand" paradigm, where the KDF logically | 96 | HKDF follows the "extract-then-expand" paradigm, where the KDF logically |
95 | consists of two modules. | 97 | consists of two modules. |
96 | The first stage takes the input keying material and "extracts" from it a | 98 | 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: | |||
106 | This is the default mode. | 108 | This is the default mode. |
107 | Calling | 109 | Calling |
108 | .Xr EVP_PKEY_derive 3 | 110 | .Xr EVP_PKEY_derive 3 |
109 | on an EVP_PKEY_CTX set up for HKDF will perform an extract followed by | 111 | on an |
112 | .Vt EVP_PKEY_CTX | ||
113 | set up for HKDF will perform an extract followed by | ||
110 | an expand operation in one go. | 114 | an expand operation in one go. |
111 | The derived key returned will be the result after the expand operation. | 115 | The derived key returned will be the result after the expand operation. |
112 | The intermediate fixed-length pseudorandom key K is not returned. | 116 | The intermediate fixed-length pseudorandom key K is not returned. |