Lines Matching refs:pbkdf2
13 crypto.pbkdf2(password, salt, iterations, keylen, hash,
59 () => crypto.pbkdf2('password', 'salt', 1, 20, 'sha1'),
91 crypto.pbkdf2('password', 'salt', 1, input, 'sha256',
104 crypto.pbkdf2('password', 'salt', 1, input, 'sha256',
114 crypto.pbkdf2('', '', 1, 32, 'sha256', common.mustSucceed());
117 () => crypto.pbkdf2('password', 'salt', 8, 8, common.mustNotCall()),
144 () => crypto.pbkdf2(input, 'salt', 8, 8, 'sha256', common.mustNotCall()),
152 () => crypto.pbkdf2('pass', input, 8, 8, 'sha256', common.mustNotCall()),
179 () => crypto.pbkdf2('pass', 'salt', i, 8, 'sha256', common.mustNotCall()),
205 () => crypto.pbkdf2('pass', 'salt', 8, 8, 'md55', common.mustNotCall()),