GoPass Manager is a lightweight, command-line tool for securely managing your passwords.
- Secure Storage: Passwords are encrypted using AES-256 encryption.
- Command-Line Interface: Manage your passwords directly from the terminal.
- Master Key: Protects your encrypted data with a master key, which is generated automatically during the first run.
- Clone the repository:
git clone https://github.com/vshulcz/gopass.git
cd gopass
- Install the application:
make install
To add a new password to the manager, use the add command:
gopass add [service]
To retrieve a password for a specific service, use the get command:
gopass get [service]
To list all stored services with their usernames, use the list command:
gopass list
To delete a password from the manager, use the delete command:
gopass delete [service]
If you ever need to remove the application, simply move to the project repository and run:
make uninstall
Contributions are welcome! If you have any suggestions or improvements, feel free to fork the repository, make your changes, and submit a pull request.
This project is intended for educational purposes.