Home
last modified time | relevance | path

Searched refs:createCipheriv (Results 1 – 22 of 22) 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),
109 () => crypto.createCipheriv('des-ede3-cbc', key, 10),
167 crypto.createCipheriv('aes-128-ecb', Buffer.alloc(16), Buffer.alloc(0));
168 crypto.createCipheriv('aes-128-ecb', Buffer.alloc(16), null);
175 () => crypto.createCipheriv('aes-128-ecb', Buffer.alloc(16),
[all …]
Dtest-crypto-authenticated.js113 const encrypt = crypto.createCipheriv(test.algo,
203 const encrypt = crypto.createCipheriv(test.algo,
214 crypto.createCipheriv(
226 crypto.createCipheriv('aes-128-cbc',
251 crypto.createCipheriv('aes-256-gcm',
280 const cipher = crypto.createCipheriv('aes-256-gcm',
323 crypto.createCipheriv('aes-256-ccm',
375 crypto.createCipheriv('aes-256-ccm',
409 crypto.createCipheriv(`aes-256-${mode}`,
443 const cipher = crypto.createCipheriv('aes-256-ccm',
[all …]
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.js38 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-key-objects.js9 createCipheriv,
79 const cipher = createCipheriv('aes-256-ecb', key, null);
Dtest-crypto-binary-default.js509 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
527 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
/third_party/node/lib/
Dcrypto.js121 function createCipheriv(cipher, key, iv, options) { function
159 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/deps/npm/node_modules/sshpk/lib/formats/
Dssh-private.js207 var cipherStream = crypto.createCipheriv(cinf.opensslName,
/third_party/node/doc/api/
Dcrypto.md191 The [`crypto.createCipher()`][] or [`crypto.createCipheriv()`][] methods are
210 const cipher = crypto.createCipheriv(algorithm, key, iv);
242 const cipher = crypto.createCipheriv(algorithm, key, iv);
263 const cipher = crypto.createCipheriv(algorithm, key, iv);
1652 > Stability: 0 - Deprecated: Use [`crypto.createCipheriv()`][] instead.
1687 their own using [`crypto.scrypt()`][] and to use [`crypto.createCipheriv()`][]
1694 ### `crypto.createCipheriv(algorithm, key, iv[, options])`
3219 const cipher = crypto.createCipheriv('aes-192-ccm', key, nonce, {
3617 [`crypto.createCipheriv()`]: #crypto_crypto_createcipheriv_algorithm_key_iv_options
Ddeprecations.md1993 [`crypto.createCipheriv()`][] and [`crypto.createDecipheriv()`][] to obtain the
2703 [`crypto.createCipheriv()`]: crypto.md#crypto_crypto_createcipheriv_algorithm_key_iv_options
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md767 ….com/nodejs/node/commit/832e0522eb)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…
DCHANGELOG_V12.md1774 …mmit/3de1fc6958)] - **doc**: document that iv may be null when using createCipheriv() (Ruben Bridg…
DCHANGELOG_V10.md3867 …o.createDecipher()` methods have been deprecated. Please use `crypto.createCipheriv()` and `crypto…
DCHANGELOG_V8.md1011 ….com/nodejs/node/commit/f8ad381e61)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…