Skip to content

Commit a65b0b9

Browse files
committedJan 22, 2018
doc: use PBKDF2 in text
Use upper case variant in text in compliance with RFC 2898. PR-URL: #18279 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Vladimir Kurchatkin <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 55a9375 commit a65b0b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,7 @@ password always creates the same key. The low iteration count and
12601260
non-cryptographically secure hash algorithm allow passwords to be tested very
12611261
rapidly.
12621262

1263-
In line with OpenSSL's recommendation to use pbkdf2 instead of
1263+
In line with OpenSSL's recommendation to use PBKDF2 instead of
12641264
[`EVP_BytesToKey`][] it is recommended that developers derive a key and IV on
12651265
their own using [`crypto.pbkdf2()`][] and to use [`crypto.createCipheriv()`][]
12661266
to create the `Cipher` object. Users should not use ciphers with counter mode
@@ -1322,7 +1322,7 @@ password always creates the same key. The low iteration count and
13221322
non-cryptographically secure hash algorithm allow passwords to be tested very
13231323
rapidly.
13241324

1325-
In line with OpenSSL's recommendation to use pbkdf2 instead of
1325+
In line with OpenSSL's recommendation to use PBKDF2 instead of
13261326
[`EVP_BytesToKey`][] it is recommended that developers derive a key and IV on
13271327
their own using [`crypto.pbkdf2()`][] and to use [`crypto.createDecipheriv()`][]
13281328
to create the `Decipher` object.

0 commit comments

Comments
 (0)
Please sign in to comment.