Home
last modified time | relevance | path

Searched refs:createDecipher (Results 1 - 5 of 5) sorted by relevance

/third_party/node/test/parallel/
H A Dtest-crypto-cipher-decipher.js33 const decipher = crypto.createDecipher('aes192', key);
47 const dStream = crypto.createDecipher('aes192', key);
69 const decipher = crypto.createDecipher('aes256', key);
126 () => crypto.createDecipher(null),
135 () => crypto.createDecipher('aes-256-cbc', 'secret').setAuthTag(null),
142 () => crypto.createDecipher('aes-256-cbc', null),
164 const d = crypto.createDecipher('aes-256-cbc', 'secret');
202 let decipher = crypto.createDecipher('aes192', key);
209 decipher = crypto.createDecipher('aes192', key);
214 decipher = crypto.createDecipher('aes19
[all...]
H A Dtest-crypto-authenticated.js184 assert.throws(() => { crypto.createDecipher(test.algo, test.password); },
187 const decrypt = crypto.createDecipher(test.algo, test.password, options);
362 crypto.createDecipher('aes-256-ccm', 'bad password', { authTagLength });
399 crypto.createDecipher('aes-256-ccm', 'bad password', { authTagLength });
434 crypto.createDecipher(`aes-256-${mode}`, 'very bad password');
H A Dtest-crypto-binary-default.js473 const decipher = crypto.createDecipher('aes192', key);
495 const decipher = crypto.createDecipher('aes256', key);
549 const decipher = crypto.createDecipher('id-aes128-wrap', key);
/third_party/node/lib/
H A Dcrypto.js144 function createDecipher(cipher, password, options) { function
337 createDecipher: {
340 value: deprecate(createDecipher,
341 'crypto.createDecipher is deprecated.', 'DEP0106'),
/third_party/node/benchmark/crypto/
H A Dcipher-stream.js37 const bob_cipher = crypto.createDecipher(cipher, bob_secret);

Completed in 4 milliseconds