rsdice

Crates.iorsdice
lib.rsrsdice
version1.0.2
sourcesrc
created_at2020-02-09 03:10:56.538446
updated_at2020-02-10 00:01:27.967102
descriptiona diceware password generator written in rust
homepage
repositoryhttps://github.com/tidle/rsdice
max_upload_size
id206539
size163,926
(tidle)

documentation

README

Rsdice

Rsdice is a diceware password generator written in rust

Installation

Cargo

The recommended way to install rsdice is through cargo install. Assuming you have cargo installed, this will compile rsdice and add it to your path.

Executables

Executables for your platform may be available in the latest release. Check the releases tab of the github page (https://github.com/tidle/rsdice/)

Source

Simply execute cargo build --release, and the rsdice executable will be found at target/release/rsdice

Use

You can run rsdice with no arguments and it will generate a password with six words using the short wordlist. For password customization, please refer to the help message:

USAGE:
    rsdice [FLAGS] [OPTIONS]

FLAGS:
    -h, --help        Prints help information
    -i, --internet    get random numbers from an internet source (random.org) rather than using the built in random
                      number generation
    -l, --long        use the five dice word list instead of the four dice one
    -m, --manual      manually input dice rolls rather than using the computer
    -V, --version     Prints version information

OPTIONS:
    -f, --file <FILE>           manually specify a wordlist, rather than using the built in wordlists
    -w, --words <WORD COUNT>    length of password [default: 6]
Commit count: 31

cargo fmt