1.0.1 • Published 7 years ago

saria v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

saria

Playing around w/ crypto

The intention is to build a CLI for storing encrypted information in a .saria file in your pwd.

Usage:

npm install saria -g

Write:

Encrypt text with a secret.

$ saria write <text> <secret>
$ saria write "apples are the best" redDelicious89

Read:

Provide the secret to decrypt the text

$ saria read <secret>
$ saria read redDelicious89
=> "apples are the best"