first commit
This commit is contained in:
8
build/node_modules/public-encrypt/xor.js
generated
vendored
Normal file
8
build/node_modules/public-encrypt/xor.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
module.exports = function xor(a, b) {
|
||||
var len = a.length;
|
||||
var i = -1;
|
||||
while (++i < len) {
|
||||
a[i] ^= b[i];
|
||||
}
|
||||
return a
|
||||
};
|
||||
Reference in New Issue
Block a user