~jturner/pwstore

A simple ksh based password store
Use -E now that -A is no more
Add note about pwgen in README
Use escaped password in sql query

clone

read-only
https://git.sr.ht/~jturner/pwstore
read/write
git@git.sr.ht:~jturner/pwstore

You can also use your local clone with git send-email.

#pwstore

pwstore is a simple ksh script that uses reop and SQLite3 to securely store your passwords in an encrypted database that can easily be backed up. It can also utilize pwgen to automatically generate "secure" passwords for you.

#Usage

Any of the below commands will initialize the pwstore database and reop keypair in your $HOME directory.

To add a new password:

pwstore -a label

To add and generate a new password:

pwstore -g -a label

To view the password for label:

pwstore label

To change the password for label:

pwstore -o -a label

To delete the password for label:

pwstore -d label

To list current labels:

pwstore -l