Lines Matching refs:crypto
4 common.skip('missing crypto');
7 const crypto = require('crypto');
11 crypto.pbkdf2Sync(password, salt, iterations, keylen, hash);
13 crypto.pbkdf2(password, salt, iterations, keylen, hash,
59 () => crypto.pbkdf2('password', 'salt', 1, 20, 'sha1'),
68 () => crypto.pbkdf2Sync('password', 'salt', iterations, 20, 'sha1'),
79 crypto.pbkdf2Sync('password', 'salt', 1, notNumber, 'sha256');
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()),
126 () => crypto.pbkdf2Sync('password', 'salt', 8, 8),
135 () => crypto.pbkdf2Sync('password', 'salt', 8, 8, null),
144 () => crypto.pbkdf2(input, 'salt', 8, 8, 'sha256', common.mustNotCall()),
152 () => crypto.pbkdf2('pass', input, 8, 8, 'sha256', common.mustNotCall()),
160 () => crypto.pbkdf2Sync(input, 'salt', 8, 8, 'sha256'),
168 () => crypto.pbkdf2Sync('pass', input, 8, 8, 'sha256'),
179 () => crypto.pbkdf2('pass', 'salt', i, 8, 'sha256', common.mustNotCall()),
188 () => crypto.pbkdf2Sync('pass', 'salt', i, 8, 'sha256'),
205 () => crypto.pbkdf2('pass', 'salt', 8, 8, 'md55', common.mustNotCall()),
214 () => crypto.pbkdf2Sync('pass', 'salt', 8, 8, 'md55'),
224 crypto.getHashes()
234 () => crypto.pbkdf2Sync('1', '2', 1, 1, '%'),