@@ -2880,12 +2880,12 @@ or types.
2880
2880
``` js
2881
2881
const crypto = require (' crypto' );
2882
2882
// Using the factory defaults.
2883
- crypto .scrypt (' secret ' , ' salt' , 64 , (err , derivedKey ) => {
2883
+ crypto .scrypt (' password ' , ' salt' , 64 , (err , derivedKey ) => {
2884
2884
if (err) throw err;
2885
2885
console .log (derivedKey .toString (' hex' )); // '3745e48...08d59ae'
2886
2886
});
2887
2887
// Using a custom N parameter. Must be a power of two.
2888
- crypto .scrypt (' secret ' , ' salt' , 64 , { N : 1024 }, (err , derivedKey ) => {
2888
+ crypto .scrypt (' password ' , ' salt' , 64 , { N : 1024 }, (err , derivedKey ) => {
2889
2889
if (err) throw err;
2890
2890
console .log (derivedKey .toString (' hex' )); // '3745e48...aa39b34'
2891
2891
});
@@ -2937,10 +2937,10 @@ or types.
2937
2937
``` js
2938
2938
const crypto = require (' crypto' );
2939
2939
// Using the factory defaults.
2940
- const key1 = crypto .scryptSync (' secret ' , ' salt' , 64 );
2940
+ const key1 = crypto .scryptSync (' password ' , ' salt' , 64 );
2941
2941
console .log (key1 .toString (' hex' )); // '3745e48...08d59ae'
2942
2942
// Using a custom N parameter. Must be a power of two.
2943
- const key2 = crypto .scryptSync (' secret ' , ' salt' , 64 , { N : 1024 });
2943
+ const key2 = crypto .scryptSync (' password ' , ' salt' , 64 , { N : 1024 });
2944
2944
console .log (key2 .toString (' hex' )); // '3745e48...aa39b34'
2945
2945
```
2946
2946
0 commit comments