Home
last modified time | relevance | path

Searched refs:createCipheriv (Results 1 – 23 of 23) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto-cipheriv-decipheriv.js15 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
30 const cStream = crypto.createCipheriv('des-ede3-cbc', key, iv);
49 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
67 const cipher = crypto.createCipheriv('id-aes128-wrap', key, iv);
91 () => crypto.createCipheriv(null),
100 () => crypto.createCipheriv('des-ede3-cbc', null),
107 () => crypto.createCipheriv('des-ede3-cbc', key, 10),
159 crypto.createCipheriv('aes-128-ecb', Buffer.alloc(16), Buffer.alloc(0));
160 crypto.createCipheriv('aes-128-ecb', Buffer.alloc(16), null);
167 () => crypto.createCipheriv('aes-128-ecb', Buffer.alloc(16),
[all …]
Dtest-crypto-authenticated.js114 const encrypt = crypto.createCipheriv(test.algo,
204 const encrypt = crypto.createCipheriv(test.algo,
215 crypto.createCipheriv(
227 crypto.createCipheriv('aes-128-cbc',
252 crypto.createCipheriv('aes-256-gcm',
281 const cipher = crypto.createCipheriv('aes-256-gcm',
324 crypto.createCipheriv('aes-256-ccm',
376 crypto.createCipheriv('aes-256-ccm',
410 crypto.createCipheriv(`aes-256-${mode}`,
444 const cipher = crypto.createCipheriv('aes-256-ccm',
[all …]
Dtest-crypto-encoding-validation-error.js9 const { createCipheriv, randomBytes } = require('crypto');
12 return createCipheriv('aes-256-cbc', randomBytes(32), randomBytes(16));
Dtest-crypto-authenticated-stream.js30 const c = crypto.createCipheriv(cipher, key, iv, { authTagLength });
46 const c = crypto.createCipheriv(cipher, key, iv, { authTagLength });
81 const c = crypto.createCipheriv(cipher, key, iv, { authTagLength });
Dtest-crypto-ecb.js42 crypto.createCipheriv('BF-ECB', 'SomeRandomBlahz0c5GZVnR', '');
Dtest-crypto-des3-wrap.js19 const cipher = crypto.createCipheriv('des3-wrap', test.key, test.iv);
Dtest-crypto-update-encoding.js13 const cipher = () => crypto.createCipheriv('aes-128-cbc', key, iv);
Dtest-crypto-padding-aes256.js35 const c = crypto.createCipheriv('aes256', key, iv);
Dtest-crypto-aes-wrap.js49 const cipher = crypto.createCipheriv(
Dtest-crypto-stream.js70 const cipher = crypto.createCipheriv('aes-128-cbc', key, iv);
Dtest-crypto-padding.js63 const encrypt = crypto.createCipheriv(CIPHER_NAME, KEY_PLAIN, IV_PLAIN);
Dtest-crypto-binary-default.js509 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
527 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
Dtest-crypto.js132 crypto.createCipheriv(algo,
Dtest-crypto-key-objects.js9 createCipheriv,
82 const cipher = createCipheriv('aes-256-ecb', key, null);
/third_party/node/lib/
Dcrypto.js140 function createCipheriv(cipher, key, iv, options) { function
180 createCipheriv, property
/third_party/node/benchmark/crypto/
Daes-gcm-throughput.js26 const alice = crypto.createCipheriv(cipher, key, iv);
/third_party/node/test/common/
Dtls.js119 const bob = crypto.createCipheriv('aes-128-gcm', this.client_writeKey, iv);
/third_party/node/doc/api/
Dcrypto.md320 The [`crypto.createCipher()`][] or [`crypto.createCipheriv()`][] methods are
330 createCipheriv,
345 const cipher = createCipheriv(algorithm, key, iv);
363 createCipheriv,
378 const cipher = createCipheriv(algorithm, key, iv);
407 createCipheriv,
421 const cipher = createCipheriv(algorithm, key, iv);
446 createCipheriv,
460 const cipher = createCipheriv(algorithm, key, iv);
478 createCipheriv,
[all …]
Ddeprecations.md2121 [`crypto.createCipheriv()`][] and [`crypto.createDecipheriv()`][] to obtain the
3384 [`crypto.createCipheriv()`]: crypto.md#cryptocreatecipherivalgorithm-key-iv-options
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md789 ….com/nodejs/node/commit/832e0522eb)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…
DCHANGELOG_V8.md1026 ….com/nodejs/node/commit/f8ad381e61)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…
DCHANGELOG_V10.md4147 …o.createDecipher()` methods have been deprecated. Please use `crypto.createCipheriv()` and `crypto…
DCHANGELOG_V12.md4192 …mmit/3de1fc6958)] - **doc**: document that iv may be null when using createCipheriv() (Ruben Bridg…