Add argon2 support to password_hash

Adding the argon2 algorithm for `password_hash` -- this is already supported in `passlib` and is now the default hashing algorithm on NetBSD 10.
pull/83687/head
chapmajs 4 months ago committed by GitHub
parent ff5deaf62f
commit 4b49970047
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -17,7 +17,7 @@ DOCUMENTATION:
description: Hashing algorithm to use.
type: string
default: sha512
choices: [ md5, blowfish, sha256, sha512, bcrypt ]
choices: [ md5, blowfish, sha256, sha512, bcrypt, argon2 ]
salt:
description: Secret string used for the hashing. If none is provided a random one can be generated. Use only numbers and letters (characters matching V([./0-9A-Za-z]+)).
type: string

Loading…
Cancel
Save