blob: 492f66ade189a6de958b8eb86c40153fd61f56a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[passlib]
#
# this is the PassLib default policy configuration, used by CryptContext
# objects which don't have an explicit base policy specified.
# the goal of this default configuration is not to set any preferred schemes,
# but provide sane defaults (eg rounds) for all the supported algorithms.
#
#TODO: need to generate min rounds for specific cpu speed & verify time limitations
ext_des_crypt.min_rounds = 30000
phpass.min_rounds = 10
bcrypt.min_rounds = 10
sha256_crypt.min_rounds = 30000
sha512_crypt.min_rounds = 30000
sun_md5_crypt.min_rounds = 30000
sha1_crypt.min_rounds = 30000
#TODO: specify default configuration for unix systems (mainly, deprecating des-crypt, ext-des-crypt)
|