1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-23 17:48:30 +00:00
This commit is contained in:
Peter Bieringer 2024-03-12 07:38:40 +01:00
parent caefa489f9
commit 36285143ce
2 changed files with 10 additions and 0 deletions

View file

@ -74,6 +74,10 @@ class Auth(auth.BaseAuth):
self._verify = self._plain
elif encryption == "md5":
self._verify = self._md5apr1
elif encryption == "sha256":
self._verify = self._sha256
elif encryption == "sha512":
self._verify = self._sha512
elif encryption == "bcrypt" or encryption == "autodetect":
try:
import bcrypt