8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27107b9 commit 7fc5c69Copy full SHA for 7fc5c69
doc/api/crypto.md
@@ -1099,7 +1099,7 @@ password always creates the same key. The low iteration count and
1099
non-cryptographically secure hash algorithm allow passwords to be tested very
1100
rapidly.
1101
1102
-In line with OpenSSL's recommendation to use pbkdf2 instead of
+In line with OpenSSL's recommendation to use PBKDF2 instead of
1103
[`EVP_BytesToKey`][] it is recommended that developers derive a key and IV on
1104
their own using [`crypto.pbkdf2()`][] and to use [`crypto.createCipheriv()`][]
1105
to create the `Cipher` object. Users should not use ciphers with counter mode
@@ -1154,7 +1154,7 @@ password always creates the same key. The low iteration count and
1154
1155
1156
1157
1158
1159
their own using [`crypto.pbkdf2()`][] and to use [`crypto.createDecipheriv()`][]
1160
to create the `Decipher` object.