aboutsummaryrefslogtreecommitdiff
path: root/mypy.ini
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-03-08 11:18:35 +0300
committerFrederick Muriuki Muriithi2023-03-08 11:18:35 +0300
commit5a8cc0d7fc241494580cd4a060690eaf09ff46d7 (patch)
treeeb9a9fa88027f28d2ec1421f0080e4260ecfe12d /mypy.ini
parent8621b737b01be5a6f238725c65771dea1410f0bb (diff)
downloadgenenetwork3-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.ini6
1 files changed, 6 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini
index 52ea938..a4ae96e 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -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