https://github.com/equalsraf/pwx
passwordsafe v3 compatible password manager
https://github.com/equalsraf/pwx
Last synced: about 1 month ago
JSON representation
passwordsafe v3 compatible password manager
- Host: GitHub
- URL: https://github.com/equalsraf/pwx
- Owner: equalsraf
- License: isc
- Created: 2015-07-03T22:25:05.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T06:58:44.000Z (over 2 years ago)
- Last Synced: 2025-01-16T22:46:54.793Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 128 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**pwx** is a PasswordSafe compatible password manager.
A minimal implementation of a password manager using the PWS3 format. As it
stands this only supports read operations, you can search for records and get
field values (username, password, etc).
Internally a PWS3 database is a list of records, each record has several fields
(username, password, email, notes, etc). Records are uniquely identified by an
UUID.
List all records for github
$ pwx list github
65be679a-bc37-4f10-b986-c55d2cbbea95 github[devy]
Get the password for that account using
$ pwx get 65be679a-bc37-4f10-b986-c55d2cbbea95 password
devy.password
Check --help or the docs for additional commands.
## License
The pwx code is licensed under the ISC. The third-party twofish implementation
belongs to Niels Ferguson (check the headers for the licensing terms).