Lines Matching refs:Cipheriv
240 // 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) {
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,