]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix L<EVP_KDF-derive> to L<EVP_DEF_derive>
authorRich Salz <rsalz@akamai.com>
Fri, 4 Oct 2019 17:40:14 +0000 (13:40 -0400)
committerRich Salz <rsalz@akamai.com>
Fri, 4 Oct 2019 17:40:14 +0000 (13:40 -0400)
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/10096)

doc/man7/EVP_KDF-HKDF.pod
doc/man7/EVP_KDF-SCRYPT.pod
doc/man7/EVP_KDF-SS.pod
doc/man7/EVP_KDF-SSHKDF.pod
doc/man7/EVP_KDF-X942.pod
doc/man7/EVP_KDF-X963.pod

index 6bb65e21e7ae1fbf6a773cbd47833176389dffe2..6a4c7eb8608aecf3cf286029ecdd486bc8897ddf 100644 (file)
@@ -51,7 +51,7 @@ There are three modes that are currently defined:
 
 =item B<EVP_KDF_HKDF_MODE_EXTRACT_AND_EXPAND> "EXTRACT_AND_EXPAND"
 
-This is the default mode.  Calling L<EVP_KDF-derive(3)> on an EVP_KDF_CTX set
+This is the default mode.  Calling L<EVP_KDF_derive(3)> on an EVP_KDF_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.
@@ -61,7 +61,7 @@ derived otherwise an error will occur.
 
 =item B<EVP_KDF_HKDF_MODE_EXTRACT_ONLY> "EXTRACT_ONLY"
 
-In this mode calling L<EVP_KDF-derive(3)> will just perform the extract
+In this mode calling L<EVP_KDF_derive(3)> will just perform the extract
 operation. The value returned will be the intermediate fixed-length pseudorandom
 key K.  The I<keylen> parameter must match the size of K, which can be looked
 up by calling EVP_KDF_size() after setting the mode and digest.
@@ -71,7 +71,7 @@ an error will occur.
 
 =item B<EVP_KDF_HKDF_MODE_EXPAND_ONLY> "EXPAND_ONLY"
 
-In this mode calling L<EVP_KDF-derive(3)> will just perform the expand
+In this mode calling L<EVP_KDF_derive(3)> will just perform the expand
 operation. The input key should be set to the intermediate fixed-length
 pseudorandom key K returned from a previous extract operation.
 
@@ -90,7 +90,7 @@ A context for HKDF can be obtained by calling:
  EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
 
 The output length of an HKDF expand operation is specified via the I<keylen>
-parameter to the L<EVP_KDF-derive(3)> function.  When using
+parameter to the L<EVP_KDF_derive(3)> function.  When using
 EVP_KDF_HKDF_MODE_EXTRACT_ONLY the I<keylen> parameter must equal the size of
 the intermediate fixed-length pseudorandom key otherwise an error will occur.
 For that mode, the fixed output size can be looked up by calling EVP_KDF_size()
index 888667e5c3e6b4957b8396af6e3922bd33ce660c..570f60e2f3275e2d67d3e73dd7878e9b446723d2 100644 (file)
@@ -69,7 +69,7 @@ A context for scrypt can be obtained by calling:
  EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
 
 The output length of an scrypt key derivation is specified via the
-"keylen" parameter to the L<EVP_KDF-derive(3)> function.
+"keylen" parameter to the L<EVP_KDF_derive(3)> function.
 
 =head1 EXAMPLES
 
index 7ab3a3da636f9382e82e6a0a9190f350e8e2ab77..2281cc3cb77a4c066bc7b51d5cc24191010b1cc7 100644 (file)
@@ -69,7 +69,7 @@ A context for SSKDF can be obtained by calling:
  EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
 
 The output length of an SSKDF is specified via the I<keylen>
-parameter to the L<EVP_KDF-derive(3)> function.
+parameter to the L<EVP_KDF_derive(3)> function.
 
 =head1 EXAMPLES
 
index 81d6120f0a72fe001412c14f61d1c5ed3b6cee0d..107b289392eccea21243eeb4156183833d1e9c80 100644 (file)
@@ -90,11 +90,11 @@ A context for SSHKDF can be obtained by calling:
  EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
 
 The output length of the SSHKDF derivation is specified via the I<keylen>
-parameter to the L<EVP_KDF-derive(3)> function.
+parameter to the L<EVP_KDF_derive(3)> function.
 Since the SSHKDF output length is variable, calling L<EVP_KDF-size()>
 to obtain the requisite length is not meaningful. The caller must
 allocate a buffer of the desired length, and pass that buffer to the
-L<EVP_KDF-derive(3)> function along with the desired length.
+L<EVP_KDF_derive(3)> function along with the desired length.
 
 =head1 EXAMPLES
 
index a45d283c15a95bee4ca32b4cb29a906f32ef45df..c88d2f528811e6479c18277450db40ae681941ca 100644 (file)
@@ -52,7 +52,7 @@ A context for X942KDF can be obtained by calling:
  EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
 
 The output length of an X942KDF is specified via the I<keylen>
-parameter to the L<EVP_KDF-derive(3)> function.
+parameter to the L<EVP_KDF_derive(3)> function.
 
 =head1 EXAMPLES
 
index 427219ee1d3abb905b7d83a2a48e68803449fc41..0248869a571e2a06537765d13fd0c767c41e76e6 100644 (file)
@@ -49,7 +49,7 @@ A context for X963KDF can be obtained by calling:
  EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
 
 The output length of an X963KDF is specified via the I<keylen>
-parameter to the L<EVP_KDF-derive(3)> function.
+parameter to the L<EVP_KDF_derive(3)> function.
 
 =head1 EXAMPLES