Untypable password generator
Go to file
2019-05-30 12:40:33 +02:00
src Use UNIC instead of unichars 2019-05-30 12:40:33 +02:00
.gitignore Initial commit 2017-01-26 12:58:31 +01:00
.gitlab-ci.yml Add GitLab CI configuration 2018-10-18 19:12:05 +02:00
Cargo.lock Use UNIC instead of unichars 2019-05-30 12:40:33 +02:00
Cargo.toml Use UNIC instead of unichars 2019-05-30 12:40:33 +02:00
LICENSE Add license 2017-01-26 11:45:32 +00:00
README.md Update readme 2018-09-16 19:23:58 +02:00
rustfmt.toml Use UNIC instead of unichars 2019-05-30 12:40:33 +02:00

pwgenr Crates.io

Random password generator (mainly for use with a password manager).

Example

$ pwgenr -c box -- 12 6
◭┫▹◨┒◳┟┰┒┴┷○
╓┭◷▱╙▙╼○▒┆◌╰
▯◳▥◱◛═▉◆┴◽▌╓
◶◓┆│┓╰┶◑▶◉◁┓
┶┬◪◶◞┼▰▏┞╳╋▩
▌┖╅┺┶◫┺┹◪┲┧┦

Options

You can check by typing pwgenr -h:

USAGE:
    pwgenr [FLAGS] [OPTIONS] [--] [ARGS]

FLAGS:
    -b, --clipboard    Copy first password to clipboard (requires xclip)
    -h, --help         Prints help information
    -V, --version      Prints version information

OPTIONS:
    -c <categories>...        Categories to be used [values: symbols, games, tech, box, arrows, dingbat, math, ascii]

ARGS:
    <LENGTH>    of the generated passwords [default: 64]
    <AMOUNT>    of generated passwords [default: 12]

Installation

You can use the cargo install command:

$ cargo install pwgenr

or a classic build and run:

$ git clone https://gitlab.com/Sakuhl/pwgenr
$ cd pwgenr
$ cargo build --release
$ cp target/release/pwgenr ~/.bin # assuming .bin is in your path