(cipher, key, iv, options)
| 243 | // the Decipheriv class is defined using the legacy function syntax rather than |
| 244 | // ES6 classes. |
| 245 | function Decipheriv(cipher, key, iv, options) { |
| 246 | if (!(this instanceof Decipheriv)) |
| 247 | return new Decipheriv(cipher, key, iv, options); |
| 248 | |
| 249 | FunctionPrototypeCall(createCipherWithIV, this, cipher, key, options, false, iv); |
| 250 | } |
| 251 | |
| 252 | ObjectSetPrototypeOf(Decipheriv.prototype, LazyTransform.prototype); |
| 253 | ObjectSetPrototypeOf(Decipheriv, LazyTransform); |
no outgoing calls
no test coverage detected
searching dependent graphs…