Home
last modified time | relevance | path

Searched refs:pbkdf2Sync (Results 1 – 9 of 9) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto-pbkdf2.js11 crypto.pbkdf2Sync(password, salt, iterations, keylen, hash);
68 () => crypto.pbkdf2Sync('password', 'salt', iterations, 20, 'sha1'),
79 crypto.pbkdf2Sync('password', 'salt', 1, notNumber, 'sha256');
126 () => crypto.pbkdf2Sync('password', 'salt', 8, 8),
135 () => crypto.pbkdf2Sync('password', 'salt', 8, 8, null),
160 () => crypto.pbkdf2Sync(input, 'salt', 8, 8, 'sha256'),
168 () => crypto.pbkdf2Sync('pass', input, 8, 8, 'sha256'),
188 () => crypto.pbkdf2Sync('pass', 'salt', i, 8, 'sha256'),
214 () => crypto.pbkdf2Sync('pass', 'salt', 8, 8, 'md55'),
234 () => crypto.pbkdf2Sync('1', '2', 1, 1, '%'),
Dtest-crypto-binary-default.js691 const actual = crypto.pbkdf2Sync(password, salt, iterations, keylen,
/third_party/node/lib/internal/crypto/
Dpbkdf2.js65 function pbkdf2Sync(password, salt, iterations, keylen, digest) { function
135 pbkdf2Sync, property
/third_party/node/lib/
Dcrypto.js61 pbkdf2Sync,
203 pbkdf2Sync, property
/third_party/node/doc/api/
Dcrypto.md4443 ### `crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)`
4489 pbkdf2Sync,
4492 const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512');
4498 pbkdf2Sync,
4501 const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512');
Ddeprecations.md265 Node.js 8.0.0, calling `crypto.pbkdf2()` or `crypto.pbkdf2Sync()` with
/third_party/node/doc/changelogs/
DCHANGELOG_V5.md590 …ps://github.com/nodejs/node/commit/903e8d09e1)] - **doc**: fix typo in pbkdf2Sync code sample (Mar…
DCHANGELOG_V4.md2037 …ps://github.com/nodejs/node/commit/38d429172d)] - **doc**: fix typo in pbkdf2Sync code sample (Mar…
DCHANGELOG_V10.md3349 …it/6262fa44d6)] - **(SEMVER-MINOR)** **crypto**: refactor pbkdf2() and pbkdf2Sync() methods (Ben N…