Skip to content

Commit 379f651

Browse files
alastairnicknisigjtorikian
authored
Add new supported password hash types (#461)
* Add new supported password hash types Fixes #460 * Add `argon2` --------- Co-authored-by: Nick Nisi <nick.nisi@workos.com> Co-authored-by: Garen J. Torikian <gjtorikian@users.noreply.github.com>
1 parent 7aebfdd commit 379f651

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from typing import Literal
22

3-
4-
PasswordHashType = Literal["bcrypt", "firebase-scrypt", "ssha"]
3+
PasswordHashType = Literal[
4+
"bcrypt", "firebase-scrypt", "pbkdf2", "scrypt", "ssha", "argon2"
5+
]

0 commit comments

Comments
 (0)