Crates.io | hrp |
lib.rs | hrp |
version | 0.1.2 |
source | src |
created_at | 2020-03-22 19:32:53.429227 |
updated_at | 2024-10-03 01:05:11.696813 |
description | generate human-readable passwords |
homepage | |
repository | https://github.com/ianbrault/hrp |
max_upload_size | |
id | 221519 |
size | 96,569 |
hrp
generates Human-Readable Passwords
hrp
uses libsodium (through
sodiumoxide) for
cryptographically-secure psudeorandom number generation (CSPRNG).
hrp
selects words from a list of the 10,000 most common medium-length (5-8
characters) English words, as determined by the Google Trillion Word Corpus.
hrp
's default password format (WWWDDDD
) results in 9,997,000,200,000,000
possible passwords.
hrp 0.1.2
Ian Brault <ian@brault.dev>
hrp generates human-readable passwords.
USAGE: hrp [OPTIONS] [FORMAT]
ARGS:
<FORMAT> Specifies the format of the generated password. Can be provided
as a single string or multiple strings. Defaults to WWWDDDD.
Acceptable format characters are (case-insensitive):
W - word
D - digit
OPTIONS:
-h, --help Prints help information
-v, --version Prints version information
hrp
can be installed with cargo
strip
on the binary$ cargo install hrp
hrp
can also be built from source
$ git clone https://github.com/ianbrault/hrp
$ cd hrp
$ cargo build --release
$ ./target/release/hrp --version
hrp 0.1.2