summaryrefslogtreecommitdiffstats
path: root/doc/man7
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-05-04 19:41:53 +0200
committerRichard Levitte <levitte@openssl.org>2018-05-04 19:52:01 +0200
commitc16ab9dc6303e42519559f6053bf7e4931203a79 (patch)
tree38517194f56753a8072ba4b2cfd541817c4dd965 /doc/man7
parentbc624bd95554ea218cbc3fad0d794abdfeb21eb6 (diff)
docs: Fix typo EVP_PKEY_new_id -> EVP_PKEY_CTX_new_id
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6177)
Diffstat (limited to 'doc/man7')
-rw-r--r--doc/man7/scrypt.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man7/scrypt.pod b/doc/man7/scrypt.pod
index aabb6c9b81..94ff3ab53f 100644
--- a/doc/man7/scrypt.pod
+++ b/doc/man7/scrypt.pod
@@ -33,7 +33,7 @@ may be used by scrypt defaults to 1025 MiB.
A context for scrypt can be obtained by calling:
- EVP_PKEY_CTX *pctx = EVP_PKEY_new_id(EVP_PKEY_SCRYPT, NULL);
+ EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_SCRYPT, NULL);
The output length of an scrypt key derivation is specified via the
length parameter to the L<EVP_PKEY_derive(3)> function.