diff options
author | Sadie Powell <sadie@witchery.services> | 2020-09-11 15:45:26 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-09-28 15:28:26 +0100 |
commit | 8e0e1806a47e6fa78f884666b55c04edf11fd66c (patch) | |
tree | d1489041c56f995104b44047ff064afd65a890f9 /data | |
parent | 7f39fb14f2d9963464165ae9112abe2e65bded8d (diff) |
Require a secure password hashing algorithm for new accounts.
Insecure algorithms can still be used for existing accounts.
Diffstat (limited to 'data')
-rw-r--r-- | data/example.conf | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/data/example.conf b/data/example.conf index da50fe166..6704e4d72 100644 --- a/data/example.conf +++ b/data/example.conf @@ -1241,14 +1241,13 @@ module #module { name = "enc_bcrypt" } module { name = "enc_sha256" } -/* - * When using enc_none, passwords will be stored without encryption. This isn't secure - * therefore it is not recommended. - */ -#module { name = "enc_none" } - -/* Deprecated encryption modules */ + /* + * [DEPRECATED] Deprecated encryption modules. You can only use these for compatibility with + * old databases and will need to load one of the above modules as your primary encryption + * module. + */ #module { name = "enc_md5" } +#module { name = "enc_none" } #module { name = "enc_sha1" } /* |