Raise the level 1 length from 6 to 8 to reduce the gap with level 2

This commit is contained in:
Alexandre Aubin 2018-10-25 19:33:36 +00:00
parent c313084dc3
commit 2209f75985

View file

@ -32,7 +32,7 @@ MOST_USED_PASSWORDS = '/usr/local/share/dict/cracklib/100000-most-used'
# Length, digits, lowers, uppers, others
STRENGTH_LEVELS = [
(6, 0, 0, 0, 0),
(8, 0, 0, 0, 0),
(8, 1, 1, 1, 0),
(8, 1, 1, 1, 1),
(12, 1, 1, 1, 1),