(algorithm, options)
| 143 | // These helper functions are needed because the constructors can |
| 144 | // use new, in which case V8 cannot inline the recursive constructor call |
| 145 | function createHash(algorithm, options) { |
| 146 | return new Hash(algorithm, options); |
| 147 | } |
| 148 | |
| 149 | function createCipheriv(cipher, key, iv, options) { |
| 150 | return new Cipheriv(cipher, key, iv, options); |
no outgoing calls
no test coverage detected
searching dependent graphs…