| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/node_modules/webpack/lib/util/ |
Upload File : |
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
class StringXor {
constructor() {
this._value = undefined;
this._buffer = undefined;
}
add(str) {
let buf = this._buffer;
let value;
if (buf === undefined) {
buf = this._buffer = Buffer.from(str, "latin1");
this._value = Buffer.from(buf);
return;
} else if (buf.length !== str.length) {
value = this._value;
buf = this._buffer = Buffer.from(str, "latin1");
if (value.length < buf.length) {
this._value = Buffer.allocUnsafe(buf.length);
value.copy(this._value);
this._value.fill(0, value.length);
value = this._value;
}
} else {
value = this._value;
buf.write(str, "latin1");
}
const len = buf.length;
for (let i = 0; i < len; i++) {
value[i] = value[i] ^ buf[i];
}
}
toString() {
return this._value === undefined ? "" : this._value.toString("latin1");
}
updateHash(hash) {
if (this._value !== undefined) hash.update(this._value);
}
}
module.exports = StringXor;