Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
share
/
nodejs
/
public-encrypt
📤 Upload
📝 New File
📁 New Folder
Close
Editing: xor.js
module.exports = function xor (a, b) { var len = a.length var i = -1 while (++i < len) { a[i] ^= b[i] } return a }
Save
Cancel