Lines Matching refs:Hmac
12 Hmac: _Hmac,
129 function Hmac(hmac, key, options) {
130 if (!(this instanceof Hmac))
131 return new Hmac(hmac, key, options);
143 ObjectSetPrototypeOf(Hmac.prototype, LazyTransform.prototype);
144 ObjectSetPrototypeOf(Hmac, LazyTransform);
146 Hmac.prototype.update = Hash.prototype.update;
148 Hmac.prototype.digest = function digest(outputEncoding) {
163 Hmac.prototype._flush = Hash.prototype._flush;
164 Hmac.prototype._transform = Hash.prototype._transform;
190 Hmac,