dost is a CLI password manager written in Go.
Inspired by (Pass)[https://www.passwordstore.org/]
- Generate random passwords of configurable length
- Copy generated passwords to clipboard automatically
- Skip using symbols
> go build -o dost main.goGenerating password:
> ./dost generate email/vema@example.com
Generated Password: );XE,7-Dv?)Aa+&<{V-|pKuq5
Generating password with specified length (default is 25):
> ./dost generate email/vema@example.com 12
Generated Password: si<yJ=5/lEb3
Copy generated password to clipboard without printing:
> ./dost generate -c email/vema@example.com
Copied to clipboard! ✅
Avoid symbols for generating passwords:
> ./dost generate -n email/vema@example.com
Generated Password: E2UST}^{Ac[Fb&D|cD%;Eij>H
- Insert a new password manually
- Show an existing password
- List all entries
- Password storage
- GPG Key based encryption
MIT