summaryrefslogtreecommitdiff
path: root/common/security.py
blob: af1e8b93a14c921fcec88ecdee57476f91c9d497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
    )