Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit ed3783d

Browse files
Lukasaddaleax
Lukas
authored andcommitted
doc: reduce keylen in pbkdf2 examples
PR-URL: nodejs/node#16203 Refs: nodejs/node#3415 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 933d3fd commit ed3783d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/api/crypto.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1617,9 +1617,9 @@ Example:
16171617

16181618
```js
16191619
const crypto = require('crypto');
1620-
crypto.pbkdf2('secret', 'salt', 100000, 512, 'sha512', (err, derivedKey) => {
1620+
crypto.pbkdf2('secret', 'salt', 100000, 64, 'sha512', (err, derivedKey) => {
16211621
if (err) throw err;
1622-
console.log(derivedKey.toString('hex')); // '3745e48...aa39b34'
1622+
console.log(derivedKey.toString('hex')); // '3745e48...08d59ae'
16231623
});
16241624
```
16251625

@@ -1669,8 +1669,8 @@ Example:
16691669

16701670
```js
16711671
const crypto = require('crypto');
1672-
const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512');
1673-
console.log(key.toString('hex')); // '3745e48...aa39b34'
1672+
const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512');
1673+
console.log(key.toString('hex')); // '3745e48...08d59ae'
16741674
```
16751675

16761676
An array of supported digest functions can be retrieved using

0 commit comments

Comments
 (0)