1 stable release
1.0.2 | Sep 13, 2022 |
---|
#25 in #off
16KB
294 lines
Pa-rs E
A rusty password manager that'll blow your arse off.
The What
Pa-rs E is a simple, Rust-based password manager that implements an equally memorable and secure password format. All passwords are created using only 3 components:
- A randomly generated 6-8 character string
- A phrase the user keeps memorized
- A 127-character ASCII cipher to "cipher" service names
The Why
Through combining these, the user can easily generate memorable passwords that are still lengthy, unique and secure. Since the memorable phrase is required to generate the password, it is not stored anywhere. The user is responsible for keeping it in their head. This allows the rest of the password to:
- Be unique to each service
- Never wholly be stored anywhere
- Be easily generated
And allows the cipher and leading string to be stored on the machine in plaintext, while not compromising on security.
Usage
Pa-rs E works using multiple profiles. Each profile has a unique cipher and a leading string.
The user can switch between profiles using the --profile
/-p
flag.
Subcommand | Description |
---|---|
profile new/delete |
Initializes or deletes a Pa-rs E profile |
parse -p (profile ) |
Parses a new password from the user-provided service name, if a profile is not specified, "default" is used |
Installation / Building
From Source
- Clone the repository
git clone https://gitlab.com/mchal_/parse
- Install using Cargo
cargo install --path .
Nix
Not yet available, maybe in the future...
Arch Linux
- Clone and enter the repository
git clone https://gitlab.com/mchal_/parse
cd parse
- Run
makepkg
to build and install the package
makepkg -si
From Binaries
- Binary releases are not yet available. Please use the source installation method for now
Dependencies
~3–14MB
~120K SLoC