We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Couper supports a htpasswd_file in the basic_auth access control.
There is already a range of hashing algorithms supported like APR1 style, bcrypt….
I would like to use argon2 as this seems to be the latest greatest way of hashing passwords.
Argon2 hashes use a similar prefix: $argon2id$ (or just i or d). so it would be simple to detect.
$argon2id$
The text was updated successfully, but these errors were encountered:
we could use the x-package https://pkg.go.dev/golang.org/x/crypto/argon2.
Sorry, something went wrong.
No branches or pull requests
Couper supports a htpasswd_file in the basic_auth access control.
There is already a range of hashing algorithms supported like APR1 style, bcrypt….
I would like to use argon2 as this seems to be the latest greatest way of hashing passwords.
Argon2 hashes use a similar prefix:
$argon2id$
(or just i or d). so it would be simple to detect.The text was updated successfully, but these errors were encountered: