Lines Matching refs:pbkdf2
17 crypto.pbkdf2(password, salt, iterations, keylen, 'sha256',
52 crypto.pbkdf2('password', 'salt', 32, 32, 'sha256',
61 () => crypto.pbkdf2('password', 'salt', 1, 20, 'sha1'),
95 crypto.pbkdf2('password', 'salt', 1, input, 'sha256',
108 crypto.pbkdf2('password', 'salt', 1, input, 'sha256',
120 crypto.pbkdf2('', '', 1, 32, 'sha256', common.mustSucceed());
123 () => crypto.pbkdf2('password', 'salt', 8, 8, common.mustNotCall()),
152 () => crypto.pbkdf2(input, 'salt', 8, 8, 'sha256', common.mustNotCall()),
161 () => crypto.pbkdf2('pass', input, 8, 8, 'sha256', common.mustNotCall()),
191 () => crypto.pbkdf2('pass', 'salt', i, 8, 'sha256', common.mustNotCall()),
210 crypto.pbkdf2(new Uint8Array(10), 'salt', 8, 8, 'sha256',
212 crypto.pbkdf2('pass', new Uint8Array(10), 8, 8, 'sha256',
214 crypto.pbkdf2(new Uint16Array(10), 'salt', 8, 8, 'sha256',
216 crypto.pbkdf2('pass', new Uint16Array(10), 8, 8, 'sha256',
218 crypto.pbkdf2(new Uint32Array(10), 'salt', 8, 8, 'sha256',
220 crypto.pbkdf2('pass', new Uint32Array(10), 8, 8, 'sha256',
222 crypto.pbkdf2(new Float32Array(10), 'salt', 8, 8, 'sha256',
224 crypto.pbkdf2('pass', new Float32Array(10), 8, 8, 'sha256',
226 crypto.pbkdf2(new Float64Array(10), 'salt', 8, 8, 'sha256',
228 crypto.pbkdf2('pass', new Float64Array(10), 8, 8, 'sha256',
243 () => crypto.pbkdf2('pass', 'salt', 8, 8, 'md55', common.mustNotCall()),