Password Generator

Below are 100 randomly generated passwords. The scheme template can be selected from the options listed below.

Default Apple ID NTML XKCD Web 16 Web 32 Wifi

Generation Configuration File:
Configuration {
    words: WordConfiguration {
        num_words: 2,
        min_length: 5,
        max_length: 5,
        transformations: CapitaliseNonFirst,
    },
    seperator: SeperatorConfiguration {
        seperator_type: RandomCharacter,
        seperators: [
            '-',
            '+',
            '=',
            '.',
            '*',
            '_',
            '|',
            '~',
            ',',
        ],
    },
    padding_digits: PaddingDigitConfiguration {
        num_before: 1,
        num_after: 0,
    },
    padding_symbols: PaddingSymbolConfiguration {
        padding_type: Fixed(
            0,
            1,
        ),
        padding_character_type: RandomCharacter,
        padding_chars: [
            '!',
            '@',
            '$',
            '%',
            '^',
            '&',
            '*',
            '+',
            '=',
            ':',
            '|',
            '~',
            '?',
        ],
    },
}
Loaded in under 10 ms Built in 2018