Searched refs:createCipheriv (Results 1 – 22 of 22) sorted by relevance
15 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 …]
113 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 …]
30 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 });
38 crypto.createCipheriv('BF-ECB', 'SomeRandomBlahz0c5GZVnR', '');
19 const cipher = crypto.createCipheriv('des3-wrap', test.key, test.iv);
13 const cipher = () => crypto.createCipheriv('aes-128-cbc', key, iv);
35 const c = crypto.createCipheriv('aes256', key, iv);
49 const cipher = crypto.createCipheriv(
70 const cipher = crypto.createCipheriv('aes-128-cbc', key, iv);
63 const encrypt = crypto.createCipheriv(CIPHER_NAME, KEY_PLAIN, IV_PLAIN);
9 createCipheriv,79 const cipher = createCipheriv('aes-256-ecb', key, null);
509 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);527 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
121 function createCipheriv(cipher, key, iv, options) { function159 createCipheriv, property
26 const alice = crypto.createCipheriv(cipher, key, iv);
119 const bob = crypto.createCipheriv('aes-128-gcm', this.client_writeKey, iv);
207 var cipherStream = crypto.createCipheriv(cinf.opensslName,
191 The [`crypto.createCipher()`][] or [`crypto.createCipheriv()`][] methods are210 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
1993 [`crypto.createCipheriv()`][] and [`crypto.createDecipheriv()`][] to obtain the2703 [`crypto.createCipheriv()`]: crypto.md#crypto_crypto_createcipheriv_algorithm_key_iv_options
767 ….com/nodejs/node/commit/832e0522eb)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…
1774 …mmit/3de1fc6958)] - **doc**: document that iv may be null when using createCipheriv() (Ruben Bridg…
3867 …o.createDecipher()` methods have been deprecated. Please use `crypto.createCipheriv()` and `crypto…
1011 ….com/nodejs/node/commit/f8ad381e61)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…