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 /README.md | |
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 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -194,17 +194,17 @@ following environment variable(s): To run tests: ```bash -$ export AUTHLIB_INSECURE_TRANSPORT=true -$ export OAUTH2_ACCESS_TOKEN_GENERATOR="tests.unit.auth.test_token.gen_token" -$ pytest +export AUTHLIB_INSECURE_TRANSPORT=true +export OAUTH2_ACCESS_TOKEN_GENERATOR="tests.unit.auth.test_token.gen_token" +pytest ``` To specify unit-tests: ```bash -$ export AUTHLIB_INSECURE_TRANSPORT=true -$ export OAUTH2_ACCESS_TOKEN_GENERATOR="tests.unit.auth.test_token.gen_token" -$ pytest -k unit_test +export AUTHLIB_INSECURE_TRANSPORT=true +export OAUTH2_ACCESS_TOKEN_GENERATOR="tests.unit.auth.test_token.gen_token" +pytest -k unit_test ``` Running pylint: |