interface PasswordGenerationParams {
    additionalChars: string;
    length: number;
    noDigits: boolean;
    noLowercaseLetters: boolean;
    noUppercaseLetters: boolean;
}

Properties

additionalChars: string

Additional ascii characters to be included in the alphabet.

length: number

Length of the password to generate (between 1 and 1024).

noDigits: boolean

Do not include digits by default in the alphabet.

noLowercaseLetters: boolean

Do not include lower case letters by default in the alphabet.

noUppercaseLetters: boolean

Do not include upper case letters by default in the alphabet.