Paswo is a Vorpal command line application that can generate, hash, and manage passwords.
I made this to practice Javascript/Node.js and learn a bit about SQL.
Disclaimer: Paswo has only been tested on Mac OS X.
Please feel free to leave any suggestions or report any bugs.
Thanks!
npm install -g paswo
Type paswo
into your command line.
You can specify the length and use the flag -s or --special to include special characters in the password.
paswo: create
paswo: create [length] -s
paswo: hash
The db
command will switch to paswo-db
and connect to your database where you can access your passwords.
paswo: db
If the database file does not exist, using db
will ask you to create a new master key for your database and create the database file.
If the database file does exist, using db
will ask for your master key to connect to your database.
After you successfully open your database, you have access to your stored passwords.
paswo-db: change master key
paswo-db: add <website>
paswo-db: ls
paswo-db: get <website>
paswo-db: update <website>
paswo-db: delete <website>
paswo-db: exit
MIT