Searched refs:pbkdf2Sync (Results 1 – 9 of 9) sorted by relevance
/third_party/node/test/parallel/ |
D | test-crypto-pbkdf2.js | 14 crypto.pbkdf2Sync(password, salt, iterations, keylen, 'sha256'); 49 const key = crypto.pbkdf2Sync('password', 'salt', 32, 32, 'sha256'); 70 () => crypto.pbkdf2Sync('password', 'salt', iterations, 20, 'sha1'), 83 crypto.pbkdf2Sync('password', 'salt', 1, notNumber, 'sha256'); 132 () => crypto.pbkdf2Sync('password', 'salt', 8, 8), 141 () => crypto.pbkdf2Sync('password', 'salt', 8, 8, null), 170 () => crypto.pbkdf2Sync(input, 'salt', 8, 8, 'sha256'), 179 () => crypto.pbkdf2Sync('pass', input, 8, 8, 'sha256'), 200 () => crypto.pbkdf2Sync('pass', 'salt', i, 8, 'sha256'), 231 crypto.pbkdf2Sync(new Uint8Array(10), 'salt', 8, 8, 'sha256'); [all …]
|
D | test-crypto-binary-default.js | 690 const actual = crypto.pbkdf2Sync(password, salt, iterations, keylen,
|
/third_party/node/lib/internal/crypto/ |
D | pbkdf2.js | 44 function pbkdf2Sync(password, salt, iterations, keylen, digest) { function 76 pbkdf2Sync field
|
/third_party/node/lib/ |
D | crypto.js | 59 pbkdf2Sync 177 pbkdf2Sync, property
|
/third_party/node/doc/api/ |
D | crypto.md | 2435 ### `crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)` 2480 const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512'); 2491 const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512');
|
D | deprecations.md | 255 Node.js 8.0.0, calling `crypto.pbkdf2()` or `crypto.pbkdf2Sync()` with
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V5.md | 579 …ps://github.com/nodejs/node/commit/903e8d09e1)] - **doc**: fix typo in pbkdf2Sync code sample (Mar…
|
D | CHANGELOG_V4.md | 2010 …ps://github.com/nodejs/node/commit/38d429172d)] - **doc**: fix typo in pbkdf2Sync code sample (Mar…
|
D | CHANGELOG_V10.md | 3076 …it/6262fa44d6)] - **(SEMVER-MINOR)** **crypto**: refactor pbkdf2() and pbkdf2Sync() methods (Ben N…
|