Using Argon2 for Client Authentication #1901
-
|
I'm running a pretty up-to-date docker image which includes the argon python argon2-cffi module (argon2 and _argon2_cffi_bindings among the folders stored in site-packages). I currently have the following config section in the config file: I'd like to switch to argon2 authentication but am not sure of the right way to generate a compatible hash that will work with htpasswd given it cannot natively create one; or, if this is not possible, what's an alternative approach. Using the standard argon2 output with something like this in the users htpasswd output file doesn't work: I also tried truncating the above as follows but no success there either: I hope I'm not missing something embarrassingly obvious. Any suggestions would be welcome. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
have you toggled |
Beta Was this translation helpful? Give feedback.
argon2 hashes to test implementation were generated using example
see also
Radicale/radicale/auth/htpasswd.py
Line 50 in b7779ba
The message
ma…