A simple yet robust commandline random password generator.
Multiplatform (Linux, Mac, Windows). Fast.
You can use it generate keys or passwords in scripts or use it as your primary desktop password generator.
Has extensive generative test suite, including tests against a Rust port of Dropbox's password strength tester zxcvbn
genpass # use defaults, they're good
genpass 2048 # generate long password, can be used as a key
genpass --passphrase 128 # generate longer passphrase
genpass -dlu # no special characters
On a Mac:
genpass | pbcopy
On Linux:
genpass | xclip -selection clipboard
On a system with Rust installed:
$ cargo install genpass
``` $ genpass --help
USAGE: genpass [FLAGS] [length]
FLAGS: -h, --help Prints help information -d, --include-digit Include at least one digit -l, --include-lowercase Include at least one lowercase letter -s, --include-special Include at least one special (non-alphanumeric) character -u, --include-uppercase Include at least one uppercase letter --passphrase Create a passphrase of (at least) the given length instead of a password. --version
ARGS:
--length
characters long, not necessarily exactly that long.TODOs to get genpass
to 1.0
All contributions welcome ! Ideally - start a discussion with an issue first before contributing a PR.