From 80bf824b918be285098f089ced0356e40bd5beee Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 12 Mar 2024 06:10:16 +0100 Subject: [PATCH] extend htpasswd_encryption options with sha256/512/autodetect --- DOCUMENTATION.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index d72fb6b3..d553f542 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -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`