passgen-grant

Crates.iopassgen-grant
lib.rspassgen-grant
version0.1.0
created_at2025-11-11 21:57:49.241271+00
updated_at2025-11-11 21:57:49.241271+00
descriptionA secure CLI password generator with strength analysis
homepage
repository
max_upload_size
id1928247
size20,763
(Brysene)

documentation

README

# 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

Commit count: 0

cargo fmt