(cipher, key, iv, options)
| 214 | // ES6 classes. |
| 215 | |
| 216 | function Cipheriv(cipher, key, iv, options) { |
| 217 | if (!(this instanceof Cipheriv)) |
| 218 | return new Cipheriv(cipher, key, iv, options); |
| 219 | |
| 220 | FunctionPrototypeCall(createCipherWithIV, this, cipher, key, options, true, iv); |
| 221 | } |
| 222 | |
| 223 | function addCipherPrototypeFunctions(constructor) { |
| 224 | constructor.prototype._transform = _transform; |
no outgoing calls
no test coverage detected
searching dependent graphs…