Searched refs:createCipheriv (Results 1 - 12 of 12) sorted by relevance
/third_party/node/test/parallel/ |
H A D | test-crypto-cipheriv-decipheriv.js | 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('ae [all...] |
H A D | test-crypto-authenticated.js | 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('ae [all...] |
H A D | test-crypto-authenticated-stream.js | 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 });
|
H A D | test-crypto-des3-wrap.js | 19 const cipher = crypto.createCipheriv('des3-wrap', test.key, test.iv);
|
H A D | test-crypto-padding-aes256.js | 35 const c = crypto.createCipheriv('aes256', key, iv);
|
H A D | test-crypto-padding.js | 63 const encrypt = crypto.createCipheriv(CIPHER_NAME, KEY_PLAIN, IV_PLAIN);
|
H A D | test-crypto-binary-default.js | 509 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv); 527 const cipher = crypto.createCipheriv('des-ede3-cbc', key, iv);
|
H A D | test-crypto.js | 132 crypto.createCipheriv(algo,
|
H A D | test-crypto-key-objects.js | 9 createCipheriv, 82 const cipher = createCipheriv('aes-256-ecb', key, null);
|
/third_party/node/lib/ |
H A D | crypto.js | 140 function createCipheriv(cipher, key, iv, options) { function 180 createCipheriv,
|
/third_party/node/benchmark/crypto/ |
H A D | aes-gcm-throughput.js | 26 const alice = crypto.createCipheriv(cipher, key, iv);
|
/third_party/node/test/common/ |
H A D | tls.js | 119 const bob = crypto.createCipheriv('aes-128-gcm', this.client_writeKey, iv);
|
Completed in 5 milliseconds