Sha256: 5ac090d1d4c7f56967119d676f078cdad897347a6bc3b2032a92e709d2eb99e3

Contents?: true

Size: 1014 Bytes

Versions: 43

Compression:

Stored size: 1014 Bytes

Contents

# buffer-xor

[![TRAVIS](https://secure.travis-ci.org/crypto-browserify/buffer-xor.png)](http://travis-ci.org/crypto-browserify/buffer-xor)
[![NPM](http://img.shields.io/npm/v/buffer-xor.svg)](https://www.npmjs.org/package/buffer-xor)

[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](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)

Version data entries

43 entries across 42 versions & 15 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/buffer-xor/README.md
disco_app-0.18.0 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.18.2 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.16.1 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.15.2 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.18.4 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.18.1 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.14.0 test/dummy/node_modules/buffer-xor/README.md
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/buffer-xor/README.md
tang-0.2.1 spec/tang_app/node_modules/buffer-xor/README.md
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/buffer-xor/README.md
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/buffer-xor/README.md
ruby2js-4.0.4 lib/tasks/testrails/node_modules/buffer-xor/README.md
ruby2js-4.0.3 lib/tasks/testrails/node_modules/buffer-xor/README.md
tang-0.2.0 spec/tang_app/node_modules/buffer-xor/README.md
tang-0.1.0 spec/tang_app/node_modules/buffer-xor/README.md
tang-0.0.9 spec/tang_app/node_modules/buffer-xor/README.md
enju_library-0.3.8 spec/dummy/node_modules/buffer-xor/README.md
ilog-0.4.1 node_modules/buffer-xor/README.md