Home
last modified time | relevance | path

Searched refs:Cipheriv (Results 1 – 4 of 4) sorted by relevance

/third_party/node/lib/internal/crypto/
Dcipher.js223 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/
Dtest-crypto-cipheriv-decipheriv.js82 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/
Dcrypto.js83 Cipheriv,
122 return new Cipheriv(cipher, key, iv, options);
201 Cipheriv, property
/third_party/node/doc/changelogs/
DCHANGELOG_V10.md4685 …ub.com/nodejs/node/commit/6707903fae)] - **test**: improve coverage for Cipheriv and Decipheriv (L…