From 323af3368c020c7b3a5d41bb18c5d2bbc39cf0d5 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 29 Apr 2025 19:14:21 +0200 Subject: [PATCH] add info about argon2 support --- radicale/auth/htpasswd.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/radicale/auth/htpasswd.py b/radicale/auth/htpasswd.py index 17dc2c9c..71c54755 100644 --- a/radicale/auth/htpasswd.py +++ b/radicale/auth/htpasswd.py @@ -46,6 +46,9 @@ out-of-the-box: When bcrypt is installed: - BCRYPT (htpasswd -B ...) -- Requires htpasswd 2.4.x +When argon2 is installed: + - ARGON2 (python -c 'from passlib.hash import argon2; print(argon2.using(type="ID").hash("password"))' + """ import functools