Lines Matching refs:_update

36971 StreamCipher.prototype._update = function (chunk) {
37075 Decipher.prototype._update = function (data) {
37213 Cipher.prototype._update = function (data) {
37872 StreamCipher.prototype._update = function (chunk) {
38023 DES.prototype._update = function (data) {
40589 var outData = this._update(data);
40619 this._update(data);
40621 this.push(this._update(data));
43754 Hash.prototype._update = function (data) {
43830 Hmac.prototype._update = function (data) {
43896 Hmac.prototype._update = function (data) {
44648 proto._update = function _update(inp, inOff, out, outOff) {
44658 superProto._update.call(this, iv, 0, out, outOff);
44664 superProto._update.call(this, inp, inOff, out, outOff);
44716 this._update(this.buffer, 0, out, off);
44737 this._update(data, inputOff, out, outputOff);
44788 this._update(this.buffer, 0, out, 0);
44855 DES.prototype._update = function _update(inp, inOff, out, outOff) {
44989 EDE.prototype._update = function _update(inp, inOff, out, outOff) {
44992 state.ciphers[0]._update(inp, inOff, out, outOff);
44994 state.ciphers[1]._update(out, outOff, out, outOff);
44996 state.ciphers[2]._update(out, outOff, out, outOff);
49288 this._update();
49307 HashBase.prototype._update = function () {
49391 this._update(msg, i, i + this._delta32);
49528 RIPEMD160.prototype._update = function update(msg, start) {
49623 SHA1.prototype._update = function _update(msg, start) {
49724 SHA256.prototype._update = function _update(msg, start) {
49859 SHA512.prototype._update = function _update(msg, start) {
50425 this._update(seed);
50435 HmacDRBG.prototype._update = function update(seed) {
50458 this._update(entropy.concat(add || []));
50476 this._update(add);
50488 this._update(add);
61440 MD5.prototype._update = function () {
61528 this._update();
61539 this._update(); // produce result
75275 RIPEMD160.prototype._update = function () {
75343 this._update();
75354 this._update(); // produce result
78171 this._update(block);
78187 this._update(this._block);
78206 this._update(this._block);
78213 Hash.prototype._update = function () {
78286 Sha.prototype._update = function (M) {
78386 Sha1.prototype._update = function (M) {
78550 Sha256.prototype._update = function (M) {
78743 Sha512.prototype._update = function (M) {