diff options
author | Frederick Muriuki Muriithi | 2023-03-08 11:18:35 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-03-08 11:18:35 +0300 |
commit | 5a8cc0d7fc241494580cd4a060690eaf09ff46d7 (patch) | |
tree | eb9a9fa88027f28d2ec1421f0080e4260ecfe12d /mypy.ini | |
parent | 8621b737b01be5a6f238725c65771dea1410f0bb (diff) | |
download | genenetwork3-5a8cc0d7fc241494580cd4a060690eaf09ff46d7.tar.gz |
Replace Bcrypt with Argon2 for better security.
Bcrypt is now somewhat vulnerable to offline cracking, so we move our password
hashing over to Argon2.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -63,3 +63,9 @@ ignore_missing_imports = True [mypy-email_validator] ignore_missing_imports = True + +[mypy-argon2] +ignore_missing_imports = True + +[mypy-argon2.*] +ignore_missing_imports = True
\ No newline at end of file |