Simple XOR string encryption library.
- Use:
require('xor-crypt') - Install:
npm install --save xor-crypt
- Use:
require('xor-crypt') - Install:
npm install --save xor-crypt - CDN URL:
//wzrd.in/bundle/xor-crypt@0.0.2
- Use:
require('xor-crypt') - Install:
ender add xor-crypt
- Use:
require('xor-crypt') - Install:
component install RobLoach/xor-crypt
- Use:
require('xor-crypt') - Install:
bower install xor-crypt
See the XOR-Crypt demonstration for a live usage of XOR-Crypt.
var encrypted = xorCrypt('Hello World');
// Outputs: Ncjji&Qitjb
var decrypted = xorCrypt(encrypted);
// Outputs: Hello World
// Use your own XOR Key.
var encrypted = xorCrypt('Hello World', 9);
var decrypted = xorCrypt(encrypted, 9);Install dependencies through npm:
npm install
Test with ESLint, Mocha and Mocha JSDom:
npm test
Build xor-crypt.min.js with:
npm run build
Tag and publish the new versions to npm with Semantic Versioning:
git tag 2.0.0
git push origin 2.0.0
npm publish
Discover the change history by heading on over to the HISTORY.md file.
Licensed under the incredibly permissive MIT license