Lines Matching refs:crypto
4 common.skip('missing crypto');
7 const crypto = require('crypto');
11 const dh1 = crypto.createDiffieHellman(size);
13 const dh2 = crypto.createDiffieHellman(p1, 'buffer');
27 const dh3 = crypto.createDiffieHellman(p1, 'buffer');
43 const dh4 = crypto.createDiffieHellman(p1, 'buffer');
75 const c = crypto.createDecipheriv('aes-128-ecb', crypto.randomBytes(16), '');
82 const c = crypto.createDecipheriv('aes-128-ecb', crypto.randomBytes(16), '');
89 const v = crypto.constants.OPENSSL_VERSION_NUMBER;
102 crypto.createDiffieHellman('abcdef', g);
103 crypto.createDiffieHellman('abcdef', 'hex', g);
107 crypto.createDiffieHellman('abcdef', Buffer.from([2])); // OK