瀏覽代碼

add info about argon2 support

Peter Bieringer 10 月之前
父節點
當前提交
323af3368c
共有 1 個文件被更改,包括 3 次插入0 次删除
  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:
     - 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