This commit is contained in:
Dominic Grimm 2023-03-05 15:34:45 +01:00
parent dfd55e40b0
commit 8a4060a9c0
No known key found for this signature in database
GPG Key ID: 6F294212DEAAC530
1 changed files with 2 additions and 1 deletions

View File

@ -1,8 +1,9 @@
module Backend::Password
extend self
DEFAULT_LEN = 8_u32
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',
}