summaryrefslogtreecommitdiff
path: root/common/security.py
diff options
context:
space:
mode:
Diffstat (limited to 'common/security.py')
-rw-r--r--common/security.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/common/security.py b/common/security.py
new file mode 100644
index 0000000..af1e8b9
--- /dev/null
+++ b/common/security.py
@@ -0,0 +1,15 @@
+from passlib.context import CryptContext
+
+
+pwd_context = CryptContext(
+ schemes=["pbkdf2_sha256", "des_crypt"],
+ default="pbkdf2_sha256",
+
+ # vary rounds parameter randomly when creating new hashes...
+ all__vary_rounds=0.1,
+
+ # set the number of rounds that should be used...
+ # (appropriate values may vary for different schemes,
+ # and the amount of time you wish it to take)
+ pbkdf2_sha256__default_rounds=8000,
+ )