Lines Matching refs:createCipher
18 ['crypto.createCipher is deprecated.', 'DEP0106'],
25 const cipher = crypto.createCipher('aes192', key);
43 const cStream = crypto.createCipher('aes192', key);
62 const cipher = crypto.createCipher('aes256', key);
89 () => crypto.createCipher(null),
98 () => crypto.createCipher('aes-256-cbc', null),
105 () => crypto.createCipher('aes-256-cbc', 'secret').update(null),
112 () => crypto.createCipher('aes-256-cbc', 'secret').setAAD(null),
152 const c = crypto.createCipher('aes-256-cbc', 'secret');
160 const c = crypto.createCipher('aes-256-cbc', 'secret');
173 const c = crypto.createCipher('aes192', '0123456789abcdef');
181 let c = crypto.createCipher('aes192', '0123456789abcdef');
185 c = crypto.createCipher('aes192', '0123456789abcdef');
189 c = crypto.createCipher('aes192', '0123456789abcdef');
198 const c = crypto.createCipher('aes192', key);
237 const cipher = crypto.createCipher('aes-256-gcm', key);