(algorithm, options)
| 217 | } |
| 218 | |
| 219 | function Verify(algorithm, options) { |
| 220 | if (!(this instanceof Verify)) |
| 221 | return new Verify(algorithm, options); |
| 222 | validateString(algorithm, 'algorithm'); |
| 223 | this[kHandle] = new _Verify(); |
| 224 | this[kHandle].init(algorithm); |
| 225 | |
| 226 | FunctionPrototypeCall(Writable, this, options); |
| 227 | } |
| 228 | |
| 229 | ObjectSetPrototypeOf(Verify.prototype, Writable.prototype); |
| 230 | ObjectSetPrototypeOf(Verify, Writable); |
no test coverage detected