Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
buffer-xor /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2022-04-21 14:28
.npmignore
13
B
-rw-r--r--
2022-04-21 14:24
.travis.yml
165
B
-rw-r--r--
2022-04-21 14:24
LICENSE
1.06
KB
-rw-r--r--
2022-04-21 14:24
README.md
1014
B
-rw-r--r--
2022-04-21 14:24
index.js
206
B
-rw-r--r--
2022-04-21 14:24
inline.js
38
B
-rw-r--r--
2022-04-21 14:24
inplace.js
186
B
-rw-r--r--
2022-04-21 14:24
package.json
773
B
-rw-r--r--
2022-04-21 14: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)