Browse Source

add info about argon2 support

Peter Bieringer 10 months ago
parent
commit
323af3368c
1 changed files with 3 additions and 0 deletions
  1. 3 0
      radicale/auth/htpasswd.py

+ 3 - 0
radicale/auth/htpasswd.py

@@ -46,6 +46,9 @@ out-of-the-box:
 When bcrypt is installed:
 When bcrypt is installed:
     - BCRYPT     (htpasswd -B ...) -- Requires htpasswd 2.4.x
     - 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
 import functools