entroll-dictionaries 0.1.2

Generate random passwords and print entropy in bits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::WordList;

pub type EFFDiceware5 = WordList<7776>;

impl Default for EFFDiceware5 {
    fn default() -> Self {
        Self {
            words: diceware_wordlists::EFF_LONG_WORDLIST,
            name: "EFF Diceware long",
        }
    }
}