1# The first hasher in this list is the preferred algorithm. Any
2# password using different algorithms will be converted automatically
3# upon login.
4PASSWORD_HASHERS: list = [
5 "plain.passwords.hashers.PBKDF2PasswordHasher",
6 "plain.passwords.hashers.PBKDF2SHA1PasswordHasher",
7 "plain.passwords.hashers.Argon2PasswordHasher",
8 "plain.passwords.hashers.BCryptSHA256PasswordHasher",
9 "plain.passwords.hashers.ScryptPasswordHasher",
10]