File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -959,9 +959,9 @@ Type: Documentation-only
959959Using [`crypto.createCipher()`][] and [`crypto.createDecipher()`][] should be
960960avoided as they use a weak key derivation function (MD5 with no salt) and static
961961initialization vectors. It is recommended to derive a key using
962- [`crypto.pbkdf2()`][] and to use [`crypto.createCipheriv ()`][] and
963- [`crypto.createDecipheriv ()`][] to obtain the [`Cipher `][] and [`Decipher`][]
964- objects respectively.
962+ [`crypto.pbkdf2()`][] or [`crypto.scrypt ()`][] and to use
963+ [`crypto.createCipheriv ()`][] and [`crypto.createDecipheriv() `][] to obtain the
964+ [`Cipher`][] and [`Decipher`][] objects respectively.
965965
966966<a id="DEP0107"></a>
967967### DEP0107: tls.convertNPNProtocols()
@@ -1035,6 +1035,7 @@ only. Use of `process.binding()` by userland code is unsupported.
10351035[`crypto.DEFAULT_ENCODING`]: crypto.html#crypto_crypto_default_encoding
10361036[`crypto.fips`]: crypto.html#crypto_crypto_fips
10371037[`crypto.pbkdf2()`]: crypto.html#crypto_crypto_pbkdf2_password_salt_iterations_keylen_digest_callback
1038+ [`crypto.scrypt()`]: crypto.html#crypto_crypto_scrypt_password_salt_keylen_options_callback
10381039[`decipher.final()`]: crypto.html#crypto_decipher_final_outputencoding
10391040[`decipher.setAuthTag()`]: crypto.html#crypto_decipher_setauthtag_buffer
10401041[`domain`]: domain.html
You can’t perform that action at this time.
0 commit comments