summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-10-13 14:33:01 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-10-22 20:47:02 +1000
commita49d0a491c659aacabadc957ab11c738db03a734 (patch)
treec62438d5635249383373e6e687b950672adf0059 /doc
parent1ba21239ddbd1b18a3676efaa8dd9402e1468818 (diff)
Rename EVP_KDF_reset() to EVP_KDF_CTX_reset().
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13116)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/EVP_KDF.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/EVP_KDF.pod b/doc/man3/EVP_KDF.pod
index fefb3c6dde..103eafe8c1 100644
--- a/doc/man3/EVP_KDF.pod
+++ b/doc/man3/EVP_KDF.pod
@@ -93,7 +93,7 @@ I<ctx>.
=head2 Computing functions
-EVP_KDF_reset() resets the context to the default state as if the context
+EVP_KDF_CTX_reset() resets the context to the default state as if the context
had just been created.
EVP_KDF_derive() derives I<keylen> bytes of key material and places it in the
@@ -245,7 +245,7 @@ EVP_KDF_up_ref() returns 1 on success, 0 on error.
EVP_KDF_CTX_new() returns either the newly allocated
B<EVP_KDF_CTX> structure or NULL if an error occurred.
-EVP_KDF_CTX_free() and EVP_KDF_reset() do not return a value.
+EVP_KDF_CTX_free() and EVP_KDF_CTX_reset() do not return a value.
EVP_KDF_CTX_get_kdf_size() returns the output size. B<SIZE_MAX> is returned to indicate
that the algorithm produces a variable amount of output; 0 to indicate failure.