diff options
Diffstat (limited to 'node_modules/public-encrypt/xor.js')
-rw-r--r-- | node_modules/public-encrypt/xor.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/node_modules/public-encrypt/xor.js b/node_modules/public-encrypt/xor.js deleted file mode 100644 index 10d2764..0000000 --- a/node_modules/public-encrypt/xor.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = function xor (a, b) { - var len = a.length - var i = -1 - while (++i < len) { - a[i] ^= b[i] - } - return a -} |