Home
last modified time | relevance | path

Searched refs:Cipheriv (Results 1 - 3 of 3) sorted by relevance

/third_party/node/lib/internal/crypto/
H A Dcipher.js240 // The Cipheriv class is part of the legacy Node.js crypto API. It exposes
242 // the Cipheriv class is defined using the legacy function syntax rather than
245 function Cipheriv(cipher, key, iv, options) { function
246 if (!(this instanceof Cipheriv))
247 return new Cipheriv(cipher, key, iv, options);
258 if (constructor === Cipheriv) {
266 ObjectSetPrototypeOf(Cipheriv.prototype, LazyTransform.prototype);
267 ObjectSetPrototypeOf(Cipheriv, LazyTransform);
268 addCipherPrototypeFunctions(Cipheriv);
331 Cipheriv,
[all...]
/third_party/node/test/parallel/
H A Dtest-crypto-cipheriv-decipheriv.js82 const Cipheriv = crypto.Cipheriv;
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/
H A Dcrypto.js91 Cipheriv,
141 return new Cipheriv(cipher, key, iv, options);
229 Cipheriv,

Completed in 2 milliseconds