https://github.com/claudeaubry/klub
klub de lecture Agile Toulouse
https://github.com/claudeaubry/klub
jeu lecture
Last synced: 3 months ago
JSON representation
klub de lecture Agile Toulouse
- Host: GitHub
- URL: https://github.com/claudeaubry/klub
- Owner: claudeaubry
- License: mit
- Created: 2014-07-31T15:40:57.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2025-07-22T07:45:21.000Z (11 months ago)
- Last Synced: 2025-12-21T08:10:03.651Z (6 months ago)
- Topics: jeu, lecture
- Language: HTML
- Homepage: http://klubat.agiletoulouse.fr/
- Size: 4.61 MB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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))
// =>
```
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))
// =>
// NOTE: xorInplace will return the shorter slice of its parameters
// See that a has been mutated
console.log(a)
// =>
```
## License [MIT](LICENSE)