-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
48 lines (43 loc) · 1.67 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
rck@laubbaum:~$ ./pwm.py --help
Usage: pwm.py [options] [regex]...
Options:
--version show program's version number and exit
-h, --help show this help message and exit
-c, --color use colors for output
-d, --dump dump database to plain text
-i, --init initialize/create new database
-f FILE, --file=FILE use FILE as password database
-t FILE, --text=FILE generate password database from cleartext file
-k KEYID, --key=KEYID
specify gpg key
-a, --add add entry
rck@laubbaum:~$ cat pwds.txt
URL User Password Description
www.gmx.net foo 123 GMX Account
www.gmail.com bar 456 GMAIL Account
rck@laubbaum:~$ ./pwm.py --text pwds.txt
Successfully wrote encrypted database
rck@laubbaum:~$ ./pwm.py gmx
GPG Password:
gpg: encrypted with 4096-bit ELG-E key, ID XXXXXXXX, created 2009-05-18
"John Doe <foo@bar.net>"
URL : www.gmx.net
User : foo
Password : 123
Description : GMX Account
rck@laubbaum:~$ ./pwm.py --add
GPG Password:
gpg: encrypted with 4096-bit ELG-E key, ID XXXXXXXX, created 2009-05-18
"John Doe <foo@bar.net>"
Input your data (separated by <Tab>):
URL User Password Description
www.bla.net test passw0rd Bla Account
Successfully wrote encrypted database
rck@laubbaum:~$ ./pwm.py bla
GPG Password:
gpg: encrypted with 4096-bit ELG-E key, ID XXXXXXXX, created 2009-05-18
"John Doe <foo@bar.net>"
URL : www.bla.net
User : test
Password : passw0rd
Description : Bla Account