]> Sergey Matveev's repositories - passman.git/blob - README
Raise copyright years
[passman.git] / README
1 passman -- simple password manager
2 It stores passwords in single recfile
3 (https://www.gnu.org/software/recutils/), that is by default encrypted
4 by age (https://github.com/FiloSottile/age) with the passphrase and
5 compressed by zstd.
6
7 * passman add NAME [PASSWORD]
8   Appends NAME credential with optional password to the database. If
9   password is not provided, then it will be autogenerated.
10 * passman has NAME
11   Just returns if specified credential exists.
12 * passman gen
13   Prints autogenerated password.
14 * passman mod
15   Decrypts whole database to temporary file and runs editor on it.
16 * passman NAME
17   Search for specified credential. That can be regexp. If more than
18   single entity is found, then print found names. If single entity is
19   found, then its basename (last part after the slash) is copied to
20   primary X11 buffer, and password is copied to clipboard buffer. Then
21   sleep for ten seconds and clear the clipboard.