summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authormsa42 <msa42@ctemplar.com>2022-02-21 18:23:34 +0000
committerPauli <pauli@openssl.org>2022-02-24 09:23:08 +1100
commit0bc2fda3d3b76bd07243aef3eb7f824da3820b2d (patch)
treeab777ea5aee634c9acc00dc2cff81a45e0efbb85 /doc
parent7e1eda483ec9ead36c05066b45ecad618475544c (diff)
doc: Fix KDF example for scrypt
CLA: trivial Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17745)
Diffstat (limited to 'doc')
-rw-r--r--doc/man1/openssl-kdf.pod.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man1/openssl-kdf.pod.in b/doc/man1/openssl-kdf.pod.in
index 2880d1ff9d..548f69c707 100644
--- a/doc/man1/openssl-kdf.pod.in
+++ b/doc/man1/openssl-kdf.pod.in
@@ -166,7 +166,7 @@ Use PBKDF2 to create a hex-encoded derived key from a password and salt:
Use scrypt to create a hex-encoded derived key from a password and salt:
openssl kdf -keylen 64 -kdfopt pass:password -kdfopt salt:NaCl \
- -kdfopt N:1024 -kdfopt r:8 -kdfopt p:16 \
+ -kdfopt n:1024 -kdfopt r:8 -kdfopt p:16 \
-kdfopt maxmem_bytes:10485760 SCRYPT
=head1 NOTES