| Crates.io | passgen-grant |
| lib.rs | passgen-grant |
| version | 0.1.0 |
| created_at | 2025-11-11 21:57:49.241271+00 |
| updated_at | 2025-11-11 21:57:49.241271+00 |
| description | A secure CLI password generator with strength analysis |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1928247 |
| size | 20,763 |
# Password Generator
A secure command-line password generator with strength analysis.
## Features
- Customizable password length
- Character type selection (uppercase, lowercase, numbers, symbols)
- Exclude ambiguous characters option
- Password strength analysis with entropy calculation
- Generate multiple passwords at once
- Save passwords to file
## Installation
cargo install password-gen
## Usage
\# Generate a basic password
password-gen
\# Generate with symbols
password-gen --symbols
\# Analyze password strength
password-gen --analyze
\# Generate multiple passwords
password-gen --count 5 --symbols
\# Save to file
password-gen --count 10 -s -e -o passwords.txt
## Options
- -l, --length <LENGTH> - Password length (default: 16)
- -s, --symbols - Include special symbols
- -e, --exclude-ambiguous - Exclude confusing characters (0, O, l, 1, I)
- -c, --count <COUNT> - Number of passwords to generate
- -a, --analyze - Show password strength analysis
- -o, --output <FILE> - Save passwords to file