cryptirust 2.0.2

A flexible password generator that creates pronounceable passwords with adjustable entropy and custom patterns.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub fn list() -> Vec<String> {
    let consonants = "qwrtpsdfgjklzxcvbnm";
    let vowels = "aeiou";
    let mut lst = Vec::new();
    for c in consonants.chars() {
        for v in vowels.chars() {
            lst.push(c.to_string() + &v.to_string());
            lst.push(v.to_string() + &c.to_string());
        }
    }
    return lst;
}