Searched refs:Cipheriv (Results 1 – 4 of 4) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | cipher.js | 223 function Cipheriv(cipher, key, iv, options) { class 224 if (!(this instanceof Cipheriv)) 225 return new Cipheriv(cipher, key, iv, options); 236 if (constructor === Cipheriv) { 244 ObjectSetPrototypeOf(Cipheriv.prototype, LazyTransform.prototype); 245 ObjectSetPrototypeOf(Cipheriv, LazyTransform); 246 addCipherPrototypeFunctions(Cipheriv); 273 Cipheriv, property
|
/third_party/node/test/parallel/ |
D | test-crypto-cipheriv-decipheriv.js | 82 const Cipheriv = crypto.Cipheriv; constant 86 const instance = Cipheriv('des-ede3-cbc', key, iv); 87 assert(instance instanceof Cipheriv, 'Cipheriv is expected to return a new ' +
|
/third_party/node/lib/ |
D | crypto.js | 83 Cipheriv, 122 return new Cipheriv(cipher, key, iv, options); 201 Cipheriv, property
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V10.md | 4685 …ub.com/nodejs/node/commit/6707903fae)] - **test**: improve coverage for Cipheriv and Decipheriv (L…
|