A simple CLI tool to manage all your passwords
Visit our repository!
git clone https://github.com/javsanmar5/stormy
Features
Secure Master Password
Protect your stored passwords with a master password hashed using PBKDF2 and salted for added security.
Encrypted Storage
All passwords are encrypted before storage using state-of-the-art cryptographic techniques.
Local Database
Stormy uses the bbolt database for lightweight, local storage.
Salt for Extra Security
Optionally add a salt to your master password for enhanced protection.
Command-line Simplicity
Add, retrieve, and manage your passwords entirely from the terminal.
Installation guide
Option 1: Download a ZIP
- Download the ZIP file:
Go to the Stormy GitHub repository.
Click on the "Code" button and select "Download ZIP". - Unzip the repository:
unzip stormy-main.zip
cd stormy-main
- Build the project:
go build -o stormy
- md:text-2xl/[1.1] xl:text-3xl/[1.1]
Move the binary to your $PATH for global access:
sudo mv stormy /usr/local/bin
- Verify the installation:
stormy --help
Option 2: Cloning the repository
If you need the full repository, including the landing page and other resources, you can clone it:
- Clone the repository:
git clone https://github.com/javsanmar5/stormy.git
cd stormy
- Build the project:
go build -o stormy
- Move the binary to your $PATH for global access:
sudo mv stormy /usr/local/bin
- Verify the installation:
stormy --help