(cipher, key, iv, options)
| 147 | } |
| 148 | |
| 149 | function createCipheriv(cipher, key, iv, options) { |
| 150 | return new Cipheriv(cipher, key, iv, options); |
| 151 | } |
| 152 | |
| 153 | function createDecipheriv(cipher, key, iv, options) { |
| 154 | return new Decipheriv(cipher, key, iv, options); |
no outgoing calls
no test coverage detected
searching dependent graphs…