dead-simple-crypt
v0.0.1
Published
simply encrypt and decrypt things
Downloads
18
Maintainers
Readme
#Dead Simple Crypt
dead simple. fast. light
- No need for heavy libraries.
- Simple to use.
- Customize it easily.
##Get Started
Simply install via npm:
npm install simple-crypt
Load AC and you're ready to go!
var deadSimpleCrypt = require('dead-simple-crypt');
var dsc = new deadSimpleCrypt('ENTER_A_PASSWORD_TO_GENERATE_CRYPTION');
Than simply use
Examples are provided here
var plain = "I see dead people!";
var blob = dsc.encrypt(plain); //your encrypted string
sc.decrypt(blob); //back to original string
##Contribute Please do. Fork it, star it, share it and add your code to the project. Help others.
##License MIT