(cipher, key, iv, options)
| 151 | } |
| 152 | |
| 153 | function createDecipheriv(cipher, key, iv, options) { |
| 154 | return new Decipheriv(cipher, key, iv, options); |
| 155 | } |
| 156 | |
| 157 | function createDiffieHellman(sizeOrKey, keyEncoding, generator, genEncoding) { |
| 158 | return new DiffieHellman(sizeOrKey, keyEncoding, generator, genEncoding); |
no outgoing calls
no test coverage detected
searching dependent graphs…