1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

extend htpasswd_encryption options with sha256/512/autodetect

This commit is contained in:
Peter Bieringer 2024-03-12 06:10:16 +01:00
parent 401b68fe08
commit 80bf824b91

View file

@ -761,7 +761,16 @@ Available methods:
The installation of **bcrypt** is required for this.
`md5`
: This uses an iterated md5 digest of the password with a salt.
: This uses an iterated MD5 digest of the password with a salt.
`sha256`
: This uses an iterated SHA-256 digest of the password with a salt.
`sha512`
: This uses an iterated SHA-512 digest of the password with a salt.
`autodetect`
: This selects autodetection of method per entry.
Default: `md5`