aboutsummaryrefslogtreecommitdiff
path: root/README.md
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 /README.md
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 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index f328e87..1026ac4 100644
--- a/README.md
+++ b/README.md
@@ -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: