Lines Matching refs:update

5986     hash.update(Buffer.concat(buffers));
36931 ghash.update(iv);
36935 ghash.update(Buffer.alloc(toPad, 0));
36938 ghash.update(Buffer.alloc(8, 0));
36942 ghash.update(tail);
36978 this._ghash.update(rump);
36987 this._ghash.update(chunk);
36989 this._ghash.update(out);
37018 this._ghash.update(buf);
37382 GHASH.prototype.update = function (buf) {
38024 return Buffer.from(this._des.update(data));
38319 this._hash.update(data);
38324 Sign.prototype.update = function update(data, enc) {
38327 this._hash.update(data);
38353 this._hash.update(data);
38358 Verify.prototype.update = function update(data, enc) {
38361 this._hash.update(data);
38500 k = createHmac(algo, k).update(v).update(Buffer.from([0])).update(x).update(hbits).digest();
38501 v = createHmac(algo, k).update(v).digest();
38502 k = createHmac(algo, k).update(v).update(Buffer.from([1])).update(x).update(hbits).digest();
38503 v = createHmac(algo, k).update(v).digest();
38538 kv.v = createHmac(algo, kv.k).update(kv.v).digest();
38543 kv.k = createHmac(algo, kv.k).update(kv.v).update(Buffer.from([0])).digest();
38544 kv.v = createHmac(algo, kv.k).update(kv.v).digest();
40584 CipherBase.prototype.update = function (data, inputEnc, outputEnc) {
43755 this._hash.update(data);
43775 return new MD5().update(buffer).digest();
43810 key = hash.update(key).digest();
43825 this._hash.update(ipad);
43831 this._hash.update(data);
43838 return hash.update(this._opad).update(h).digest();
44697 Cipher.prototype.update = function update(data) {
44768 if (buffer) first = this.update(buffer);
48132 hash.update(arguments[i]);
48250 return this.eddsa.hash().update(this.secret()).digest();
49098 hash.update(tmp);
49099 hash.update(password);
49100 if (salt) hash.update(salt);
49255 this.update(chunk, encoding);
49275 HashBase.prototype.update = function (data, encoding) {
49376 BlockHash.prototype.update = function update(msg, enc) {
49399 this.update(this._pad());
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);
49491 Hmac.prototype.update = function update(msg, enc) {
49492 this.inner.update(msg, enc);
49497 this.outer.update(this.inner.digest());
49528 RIPEMD160.prototype._update = function update(msg, start) {
50435 HmacDRBG.prototype._update = function update(seed) {
50436 var kmac = this._hmac().update(this.V).update([0x00]);
50438 if (seed) kmac = kmac.update(seed);
50440 this.V = this._hmac().update(this.V).digest();
50442 this.K = this._hmac().update(this.V).update([0x01]).update(seed).digest();
50443 this.V = this._hmac().update(this.V).digest();
50482 this.V = this._hmac().update(this.V).digest();
70075 out.push(cipher.update(cipherText));
70227 out.push(cipher.update(cipherText));
70465 return sha(alg).update(data).digest();
70469 return new RIPEMD160().update(data).digest();
70825 t = Buffer.concat([t, createHash('sha1').update(seed).update(c).digest()]);
70900 var iHash = createHash('sha1').update(Buffer.alloc(0)).digest();
71037 var iHash = createHash('sha1').update(Buffer.alloc(0)).digest();
78148 Hash.prototype.update = function (data, enc) {