Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sug0/passgone
Generate passwords, via mnemonics and counters.
https://github.com/sug0/passgone
cli kdf mnemonic-passwords password-generator rust
Last synced: 17 days ago
JSON representation
Generate passwords, via mnemonics and counters.
- Host: GitHub
- URL: https://github.com/sug0/passgone
- Owner: sug0
- License: mit
- Created: 2023-10-10T23:18:38.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-13T23:05:27.000Z (11 months ago)
- Last Synced: 2024-10-11T02:44:22.349Z (about 1 month ago)
- Topics: cli, kdf, mnemonic-passwords, password-generator, rust
- Language: Rust
- Homepage:
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# passgone
A utility to generate passwords, via mnemonics and counters.
## Install
```
cargo install --git https://github.com/sug0/passgone
```## Usage
Mnemonics and counters are the data points that should be kept safely.
The former are equivalent to regular passwords of sorts, while the latter may
be used e.g. if the generated passwords are compromised or a website requests a
password reset.The following command will request a mnemonic from stdin, then output
a password to stdout:```
passgone -s www.amazon.com --counter 0
```
By default, counters will be initialized to 0, so this flag is optional.
All the flags accepted by the program can be consulted with:```
passgone --help
```