rusty-pwgen 0.2.0

Generate pronounceable or random passwords from the OS CSPRNG — a Rust port of Theodore Ts'o's `pwgen` with strict-compat mode, deterministic `-H` reproducible mode (SHA256 + ChaCha20), and a typed library API.
Documentation
1
2
3
4
5
//! `pwgen` alias binary (feature: pwgen-alias). argv[0] auto-detect engages Strict mode.

fn main() -> std::process::ExitCode {
    rusty_pwgen::run()
}