Skip to content
Snippets Groups Projects
Commit 1245c9cf authored by Marco De Donno's avatar Marco De Donno
Browse files

Use more clear number of pbkdf2 iterations in the config file

parent 4b80dc37
No related branches found
No related tags found
No related merge requests found
......@@ -13,10 +13,10 @@ SECRET_KEY = os.environ.get( "SECRET_KEY", utils.rand.random_data( 20 ) )
MAX_CONTENT_LENGTH = 500 * 1024 * 1024
EMAIL_NB_ITERATIONS = 50000
PASSWORD_NB_ITERATIONS = 50000
DEK_NB_ITERATIONS = 500000
CF_NB_ITERATIONS = 100000
EMAIL_NB_ITERATIONS = 50 * 1000
PASSWORD_NB_ITERATIONS = 50 * 1000
DEK_NB_ITERATIONS = 500 * 1000
CF_NB_ITERATIONS = 100 * 1000
EMAIL_SALT_LENGTH = 65
PASSWORD_SALT_LENGTH = 100
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment