crypter-node
v1.0.8
Published
## Install npm i -g crypter-node
Downloads
5
Readme
Encrypts / Decrypts with AES192
Install
npm i -g crypter-node
USAGE example:
encrypt
encrypt text "foo bar" with salt "bar"
crypter "foo bar" -e -s "bar"
--> a94237ddb77cfe1faface0fe1b9773f3
decrypt
decrypt hash a94237ddb77cfe1faface0fe1b9773f3 using salt "bar"
crypter a94237ddb77cfe1faface0fe1b9773f3 -d -s "bar"
--> foo bar