Searched refs:createCipheriv (Results 1 – 23 of 23) 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),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 …]
114 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 …]
9 const { createCipheriv, randomBytes } = require('crypto');12 return createCipheriv('aes-256-cbc', randomBytes(32), randomBytes(16));
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 });
42 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);
509 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);527 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
132 crypto.createCipheriv(algo,
9 createCipheriv,82 const cipher = createCipheriv('aes-256-ecb', key, null);
140 function createCipheriv(cipher, key, iv, options) { function180 createCipheriv, property
26 const alice = crypto.createCipheriv(cipher, key, iv);
119 const bob = crypto.createCipheriv('aes-128-gcm', this.client_writeKey, iv);
320 The [`crypto.createCipher()`][] or [`crypto.createCipheriv()`][] methods are330 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 …]
2121 [`crypto.createCipheriv()`][] and [`crypto.createDecipheriv()`][] to obtain the3384 [`crypto.createCipheriv()`]: crypto.md#cryptocreatecipherivalgorithm-key-iv-options
789 ….com/nodejs/node/commit/832e0522eb)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…
1026 ….com/nodejs/node/commit/f8ad381e61)] - **doc**: add missing meta for createCipheriv (Tobias Nießen…
4147 …o.createDecipher()` methods have been deprecated. Please use `crypto.createCipheriv()` and `crypto…
4192 …mmit/3de1fc6958)] - **doc**: document that iv may be null when using createCipheriv() (Ruben Bridg…