# Functions
FromProfile uses given profile to generate a password which profile constraints.
Generate a custom password.
NoSymbol generates a 32 character length password with 10 digits count, no symbol, with all cases, and character repeat.
Paranoid generates a 64 character length password with 10 digits count, 10 symbol count, with all cases, and character repeat.
Strong generates a 32 character length password with 10 digits count, 10 symbol count, with all cases, and character repeat.
# Constants
MaxPasswordLen defines the upper bound for password generation length.
# Variables
ProfileNoSymbol defines 32 characters password 10 digits with character repetition.
ProfileParanoid defines 64 characters password with 10 symbol and 10 digits with character repetition.
ProfileStrong defines 32 characters password with 10 symbols and 10 digits with character repetition.