Home
last modified time | relevance | path

Searched refs:hkdfSync (Results 1 – 5 of 5) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto-hkdf.js13 hkdfSync,
28 assert.throws(() => hkdfSync(i, 'a'), {
39 assert.throws(() => hkdfSync('sha256', i), {
50 assert.throws(() => hkdfSync('sha256', 'secret', i), {
61 assert.throws(() => hkdfSync('sha256', 'secret', 'salt', i), {
72 assert.throws(() => hkdfSync('sha256', 'secret', 'salt', 'info', i), {
81 assert.throws(() => hkdfSync('sha256', 'secret', 'salt', 'info', -1), {
88 assert.throws(() => hkdfSync('sha256', 'secret', 'salt', 'info',
93 assert.throws(() => hkdfSync('unknown', 'a', '', '', 10), {
106 assert.throws(() => hkdfSync('unknown', 'a', '', Buffer.alloc(1025), 10), {
[all …]
/third_party/node/benchmark/crypto/
Dhkdf.js7 hkdfSync,
23 hkdfSync(hash, key, salt, info, size);
/third_party/node/lib/internal/crypto/
Dhkdf.js122 function hkdfSync(hash, key, salt, info, length) { function
166 hkdfSync, property
/third_party/node/lib/
Dcrypto.js69 hkdfSync,
201 hkdfSync, property
/third_party/node/doc/api/
Dcrypto.md4301 ### `crypto.hkdfSync(digest, ikm, salt, info, keylen)`
4336 hkdfSync,
4339 const derivedKey = hkdfSync('sha512', 'key', 'salt', 'info', 64);
4345 hkdfSync,
4349 const derivedKey = hkdfSync('sha512', 'key', 'salt', 'info', 64);