Update password gen

This commit is contained in:
Dominic Grimm 2023-03-08 15:11:05 +01:00
parent f650b8c987
commit 1e140df16c
No known key found for this signature in database
GPG Key ID: 6F294212DEAAC530
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ module Backend::Password
DEFAULT_LEN = 12_u8
DEFAULT_CHARSET = {
'(', ')', '!', '$', '%', '&', '=', '?', '+', '-', '*', '_', '<', '>',
'@', '%', '+', '/', '!', '#', '$', '?', '(', ')', '-',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
}