A simple module for bitwise-xor on buffers
buffer-xor is a JavaScript module that performs bitwise XOR operations on buffers, useful for cryptographic applications. The project provides two functions: a standard `xor` function that returns a new buffer with the result, and an `xorInplace` variant that mutates one of the input buffers for improved performance. It's part of the crypto-browserify project and follows JavaScript standard style conventions.