https://github.com/alphabetsalphabets/rassfi
A super simple password manager
https://github.com/alphabetsalphabets/rassfi
Last synced: 3 months ago
JSON representation
A super simple password manager
- Host: GitHub
- URL: https://github.com/alphabetsalphabets/rassfi
- Owner: AlphabetsAlphabets
- License: mit
- Created: 2023-04-10T04:52:43.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-13T10:10:32.000Z (about 2 years ago)
- Last Synced: 2025-01-21T08:08:23.328Z (5 months ago)
- Language: Rust
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rassfi
A password manager written in Rust using Rofi. Which is basically just passmenu-rs.# Prerequisites
1. rofi# Usage
There are two ways to use rassfi
1. To create a new password for a new accountTo do this run `rassfi encrypt`. A popup will appear and there enter the name of the new account. The password is randomly generated using [OsRng](https://docs.rs/rand/latest/rand/rngs/struct.OsRng.html#) which implements the [CryptoRng](https://docs.rs/rand/latest/rand/trait.CryptoRng.html) trait.
The password is automatically encrypted using [srsa](https://docs.rs/srsa/0.1.6/srsa/) which uses the already well established [rsa](https://docs.rs/rsa/0.9.0/rsa/) crate.
2. To decrypt a password for an existing accuont with `rassfi login`.
A pop up will appear and you'll choose which account to retrieve the password for. Then you select the key that is needed to decrypt the file.
# Configuration
- `RASSFI_KEYSTORE`. This is where rassfi will look for when retrieving the keys you have on your system. Public and private.
- `RASSFI_VAULT`. This is the location where rassfi will write passwords to during `rassfi encrypt`.