Updated README

This commit is contained in:
ManOfGoldForever 2026-02-01 00:58:02 -05:00
parent 2ad31dea12
commit 7d07d61149

View file

@ -1,14 +1,14 @@
**pm** 🦀 #pm 🦀#
A fast, secure, and lightweight password manager CLI built entirely in Rust. No cloud, no tracking, just local encryption. A fast, secure, and lightweight password manager CLI built entirely in Rust. No cloud, no tracking, just local encryption.
**Why use this?** ###Why use this?###
- **Privacy First:** Your passwords never leave your machine. - **Privacy First:** Your passwords never leave your machine.
- **Modern Encryption:** Uses XChaCha20-Poly1305 and Argon2id. - **Modern Encryption:** Uses XChaCha20-Poly1305 and Argon2id.
- **Memory Safe:** Sensitive data is wiped from RAM immediately after use. - **Memory Safe:** Sensitive data is wiped from RAM immediately after use.
- **Lightweight:** Tiny binary with an instant startup and no gui bloat. - **Lightweight:** Tiny binary with an instant startup and no gui bloat.
**Installation and Removal** ###Installation and Removal###
1. Download the latest compressed folder for your OS (.tar.gz for linux/Mac or .zip for Windows) from the [releases](https://github.com/ManOfGoldForever/Rust-Password-Manager/releases/tag/first-release) tab. 1. Download the latest compressed folder for your OS (.tar.gz for linux/Mac or .zip for Windows) from the [releases](https://github.com/ManOfGoldForever/Rust-Password-Manager/releases/tag/first-release) tab.
2. Extract the folder 2. Extract the folder
@ -18,14 +18,14 @@ A fast, secure, and lightweight password manager CLI built entirely in Rust. No
- **Windows:** Right-click windows-install.ps1 and select '''Run with PowerShell''' - **Windows:** Right-click windows-install.ps1 and select '''Run with PowerShell'''
This script moves the pm binary to your PATH so you can use it anywhere by typing pm in a terminal. This script moves the pm binary to your PATH so you can use it anywhere by typing pm in a terminal.
**Uninstallation** ###Uninstallation###
If for whatever reason you want to remove this perfect and amazing tool along with permanently deleting your encrypted vault: If for whatever reason you want to remove this perfect and amazing tool along with permanently deleting your encrypted vault:
- **Linux/Mac:** Open a terminal in the extracted folder and run: '''chmod +x linux-mac-uninstall.sh && ./linux-mac-uninstall.sh''' - **Linux/Mac:** Open a terminal in the extracted folder and run: '''chmod +x linux-mac-uninstall.sh && ./linux-mac-uninstall.sh'''
- **Windows:** Right-click windows-uninstall.ps1 and select '''Run with PowerShell''' - **Windows:** Right-click windows-uninstall.ps1 and select '''Run with PowerShell'''
> [!WARNING] This will delete all saved passwords, your master password, and everything else along with the tool! > [!WARNING] This will delete all saved passwords, your master password, and everything else along with the tool!
**Usage** ###Usage###
The first time you run any command you'll be prompted to set a master password. The first time you run any command you'll be prompted to set a master password.
> [!IMPORTANT] The master password is the only key to access your vault so remember it and don't lose it or you won't be able to access your data. > [!IMPORTANT] The master password is the only key to access your vault so remember it and don't lose it or you won't be able to access your data.
@ -36,14 +36,14 @@ Enter any of the following commands into a terminal of your choice.
**List names of saved passwords:** '''pm list''' this will list only the names of all passwords you have saved. **List names of saved passwords:** '''pm list''' this will list only the names of all passwords you have saved.
**Delete an entry:** '''pm delete github''' (Or any name you want instead of github) this will permanently delete the entry with the name you type. **Delete an entry:** '''pm delete github''' (Or any name you want instead of github) this will permanently delete the entry with the name you type.
**Security and Data** ###Security and Data###
All data lives in a hidden folder in your home directory if you ever need to start from scratch you could delete it: All data lives in a hidden folder in your home directory if you ever need to start from scratch you could delete it:
- **Linux/Mac:** '''~/.my_pass_manager''' - **Linux/Mac:** '''~/.my_pass_manager'''
- **Windows:** '''%USERPROFILE%\.my_pass_manager\''' - **Windows:** '''%USERPROFILE%\.my_pass_manager\'''
This tool uses Argon2id to derive your encryption key from your master password making brute-force attacks computationally expensive. So even if someone stole your passwords.enc file from your computer, they would not be able to read it without your master password. So if someone happens to steal your passwords.enc file from your computer you have bigger problems than them figuring out your passwords. This tool uses Argon2id to derive your encryption key from your master password making brute-force attacks computationally expensive. So even if someone stole your passwords.enc file from your computer, they would not be able to read it without your master password. So if someone happens to steal your passwords.enc file from your computer you have bigger problems than them figuring out your passwords.
**Future Plans** ###Future Plans###
I plan to add more to this eventually like maybe a secure password generator or a TUI or something, but I don't have a list of things to add yet. Maybe after using it some I will come up with some stuff we'll see what happens. I plan to add more to this eventually like maybe a secure password generator or a TUI or something, but I don't have a list of things to add yet. Maybe after using it some I will come up with some stuff we'll see what happens.
**Enjoy :)** #Enjoy :)#