Home
last modified time | relevance | path

Searched refs:createDecipheriv (Results 1 – 22 of 22) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto-authenticated.js136 crypto.createDecipheriv(test.algo,
142 const decrypt = crypto.createDecipheriv(test.algo,
242 const decrypt = crypto.createDecipheriv('aes-128-gcm',
264 crypto.createDecipheriv('aes-256-gcm',
296 const decipher = crypto.createDecipheriv('aes-256-gcm',
338 crypto.createDecipheriv('aes-256-ccm',
386 crypto.createDecipheriv('aes-256-ccm',
420 crypto.createDecipheriv(`aes-256-${mode}`,
508 const cipher = crypto.createDecipheriv('aes-256-ccm',
525 const decrypt = crypto.createDecipheriv('aes-128-ccm', key, iv, {
[all …]
Dtest-crypto-cipheriv-decipheriv.js19 const decipher = crypto.createDecipheriv('des-ede3-cbc', key, iv);
34 const dStream = crypto.createDecipheriv('des-ede3-cbc', key, iv);
53 const decipher = crypto.createDecipheriv('des-ede3-cbc', key, iv);
73 const decipher = crypto.createDecipheriv('id-aes128-wrap', key, iv);
124 () => crypto.createDecipheriv(null),
133 () => crypto.createDecipheriv('des-ede3-cbc', null),
140 () => crypto.createDecipheriv('des-ede3-cbc', key, 10),
Dtest-crypto-authenticated-stream.js34 const d = crypto.createDecipheriv(cipher, key, iv, { authTagLength });
56 const d = crypto.createDecipheriv(cipher, key, iv, { authTagLength });
95 const d = crypto.createDecipheriv(cipher, key, iv, { authTagLength });
102 const d = crypto.createDecipheriv(cipher, key, iv, { authTagLength });
Dtest-crypto-dh.js75 const c = crypto.createDecipheriv('aes-128-ecb', crypto.randomBytes(16), '');
82 const c = crypto.createDecipheriv('aes-128-ecb', crypto.randomBytes(16), '');
Dtest-crypto-ecb.js50 crypto.createDecipheriv('BF-ECB', 'SomeRandomBlahz0c5GZVnR', '');
Dtest-crypto-des3-wrap.js22 const decipher = crypto.createDecipheriv('des3-wrap', test.key, test.iv);
Dtest-crypto-update-encoding.js14 const decipher = () => crypto.createDecipheriv('aes-128-cbc', key, iv);
Dtest-crypto-padding-aes256.js41 const c = crypto.createDecipheriv('aes256', key, iv);
Dtest-crypto-aes-wrap.js55 const decipher = crypto.createDecipheriv(
Dtest-crypto-stream.js71 const decipher = crypto.createDecipheriv('aes-128-cbc', badkey, iv);
Dtest-crypto-padding.js71 const decrypt = crypto.createDecipheriv(CIPHER_NAME, KEY_PLAIN, IV_PLAIN);
Dtest-crypto-binary-default.js513 const decipher = crypto.createDecipheriv('des-ede3-cbc', key, iv);
531 const decipher = crypto.createDecipheriv('des-ede3-cbc', key, iv);
Dtest-crypto-key-objects.js10 createDecipheriv,
87 const decipher = createDecipheriv('aes-256-ecb', key, null);
/third_party/node/lib/
Dcrypto.js148 function createDecipheriv(cipher, key, iv, options) { function
181 createDecipheriv, property
/third_party/node/benchmark/crypto/
Daes-gcm-throughput.js31 const bob = crypto.createDecipheriv(cipher, key, iv);
/third_party/node/doc/api/
Dcrypto.md652 The [`crypto.createDecipher()`][] or [`crypto.createDecipheriv()`][] methods are
662 createDecipheriv,
674 const decipher = createDecipheriv(algorithm, key, iv);
698 createDecipheriv,
711 const decipher = createDecipheriv(algorithm, key, iv);
742 createDecipheriv,
752 const decipher = createDecipheriv(algorithm, key, iv);
767 createDecipheriv,
778 const decipher = createDecipheriv(algorithm, key, iv);
792 createDecipheriv,
[all …]
Ddeprecations.md2121 [`crypto.createCipheriv()`][] and [`crypto.createDecipheriv()`][] to obtain the
3386 [`crypto.createDecipheriv()`]: crypto.md#cryptocreatedecipherivalgorithm-key-iv-options
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md790 …b.com/nodejs/node/commit/affddd372a)] - **doc**: fix description of createDecipheriv (Tobias Nieße…
DCHANGELOG_V8.md1027 …b.com/nodejs/node/commit/0071560eb4)] - **doc**: fix description of createDecipheriv (Tobias Nieße…
DCHANGELOG_V10.md4147 …e been deprecated. Please use `crypto.createCipheriv()` and `crypto.createDecipheriv()` instead. \…
DCHANGELOG_V6.md337 …b.com/nodejs/node/commit/0067bccf6f)] - **doc**: fix description of createDecipheriv (Tobias Nieße…
DCHANGELOG_V12.md4185 …ode/commit/d86f10cf0b)] - **doc**: add KeyObject to type for crypto.createDecipheriv() argument (e…