Lines Matching refs:Hash

43747 function Hash(hash) {
43752 inherits(Hash, Base);
43754 Hash.prototype._update = function (data) {
43758 Hash.prototype._final = function () {
43766 return new Hash(sha(alg));
43912 exports.createHash = exports.Hash = require('create-hash');
49458 this.Hash = hash;
49471 if (key.length > this.blockSize) key = new this.Hash().update(key).digest();
49482 this.inner = new this.Hash().update(key); // 0x36 ^ 0x5c = 0x6a
49488 this.outer = new this.Hash().update(key);
56090 function Hash(entries) {
56182 Hash.prototype.clear = hashClear;
56183 Hash.prototype['delete'] = hashDelete;
56184 Hash.prototype.get = hashGet;
56185 Hash.prototype.has = hashHas;
56186 Hash.prototype.set = hashSet;
56336 'hash': new Hash(),
56338 'string': new Hash()
58651 function Hash(entries) {
58747 Hash.prototype.clear = hashClear;
58748 Hash.prototype['delete'] = hashDelete;
58749 Hash.prototype.get = hashGet;
58750 Hash.prototype.has = hashHas;
58751 Hash.prototype.set = hashSet;
58905 'hash': new Hash(),
58907 'string': new Hash()
60721 function Hash(entries) {
60813 Hash.prototype.clear = hashClear;
60814 Hash.prototype['delete'] = hashDelete;
60815 Hash.prototype.get = hashGet;
60816 Hash.prototype.has = hashHas;
60817 Hash.prototype.set = hashSet;
60967 'hash': new Hash(),
60969 'string': new Hash()
78141 function Hash(blockSize, finalSize) {
78148 Hash.prototype.update = function (data, enc) {
78179 Hash.prototype.digest = function (enc) {
78213 Hash.prototype._update = function () {
78217 module.exports = Hash;
78248 var Hash = require('./hash');
78258 Hash.call(this, 64, 56);
78261 inherits(Sha, Hash);
78344 var Hash = require('./hash');
78354 Hash.call(this, 64, 56);
78357 inherits(Sha1, Hash);
78445 var Hash = require('./hash');
78455 Hash.call(this, 64, 56);
78498 var Hash = require('./hash');
78509 Hash.call(this, 64, 56);
78512 inherits(Sha256, Hash);
78614 var Hash = require('./hash');
78623 Hash.call(this, 128, 112);
78672 var Hash = require('./hash');
78682 Hash.call(this, 128, 112);
78685 inherits(Sha512, Hash);