Home
last modified time | relevance | path

Searched refs:createCipheriv (Results 1 - 12 of 12) sorted by relevance

/third_party/node/test/parallel/
H A 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('ae
[all...]
H A 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('ae
[all...]
H A 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 });
H A Dtest-crypto-des3-wrap.js19 const cipher = crypto.createCipheriv('des3-wrap', test.key, test.iv);
H A Dtest-crypto-padding-aes256.js35 const c = crypto.createCipheriv('aes256', key, iv);
H A Dtest-crypto-padding.js63 const encrypt = crypto.createCipheriv(CIPHER_NAME, KEY_PLAIN, IV_PLAIN);
H A Dtest-crypto-binary-default.js509 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
527 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
H A Dtest-crypto.js132 crypto.createCipheriv(algo,
H A Dtest-crypto-key-objects.js9 createCipheriv,
82 const cipher = createCipheriv('aes-256-ecb', key, null);
/third_party/node/lib/
H A Dcrypto.js140 function createCipheriv(cipher, key, iv, options) { function
180 createCipheriv,
/third_party/node/benchmark/crypto/
H A Daes-gcm-throughput.js26 const alice = crypto.createCipheriv(cipher, key, iv);
/third_party/node/test/common/
H A Dtls.js119 const bob = crypto.createCipheriv('aes-128-gcm', this.client_writeKey, iv);

Completed in 5 milliseconds