A secure password manager, that can create very strong passwords for you, for a large number of websites, and a large number of users
When you really need to keep your passwords safe. All application data is stored in a file PassMgr.dat in the same dir
- There are 2 secrets derived from your master password a. The first secret is used for logging you into the program b. The second secret is used for generating new passwords for every [email protected]
- All secrets are strong and one-way, and not stored anywhere
- Two salts are stored for each secret
- Only the hash of the first secret is stored
- Only the user-accounts data is stored
- It is not possible to change the master-password. Make sure it is really secret!
passwd-mgr
login
create-password username@site
show-password username@site
show-accounts
logout
exit
[irfan@Home] passwd-mgr
passMgr> login
Enter username: SnowWhite
Enter Master Password:
Confirm master password:
Successfully generated a master password.
SnowWhite@passMgr> create-password [email protected]
Password is: x&:@6R?!Q{wFm_.)
SnowWhite@passMgr> show-password [email protected]
Password is: x&:@6R?!Q{wFm_.)
SnowWhite@passMgr> create-password [email protected]
Password is: W\kry{Z88<98E2dr
SnowWhite@passMgr> create-password [email protected]
Password is: VBP9p;Tw2s;gZ);_
SnowWhite@passMgr> show-accounts
[email protected]
[email protected]
SnowWhite@passMgr> logout
passMgr> exit