Lines Matching defs:Verify
26 Verify: _Verify,
195 function Verify(algorithm, options) {
196 if (!(this instanceof Verify))
197 return new Verify(algorithm, options);
205 ObjectSetPrototypeOf(Verify.prototype, Writable.prototype);
206 ObjectSetPrototypeOf(Verify, Writable);
208 Verify.prototype._write = Sign.prototype._write;
209 Verify.prototype.update = Sign.prototype.update;
211 Verify.prototype.verify = function verify(options, signature, sigEncoding) {
305 Verify,