Increase minimum password length to 8 characters

There are 95 printable ASCII characters which with a minimum length of 4
gives 95^4 or 81 million possible passwords. Increasing the minimum
length to 8 increases the number of possible passwords by a factor of
about 10^7.

Relates to FS#52297.

Signed-off-by: Alex Muller <alex@mullr.net>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Alex Muller 2017-01-03 23:03:35 +00:00 committed by Lukas Fleischer
parent 8914a41db9
commit eb4ba5cfdb

View file

@ -9,7 +9,7 @@ password = aur
[options]
username_min_len = 3
username_max_len = 16
passwd_min_len = 4
passwd_min_len = 8
default_lang = en
sql_debug = 0
max_sessions_per_user = 8