1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-11-25 08:38:59 +00:00

reduce rounds

This commit is contained in:
Lynne Megido 2019-09-01 17:17:07 +10:00
parent 3781a04965
commit 8cda8b371c

View file

@ -77,7 +77,7 @@ def do_signup():
user_id = hashlib.sha256(request.form['email'].encode('utf-8')).digest() user_id = hashlib.sha256(request.form['email'].encode('utf-8')).digest()
pw_hashed = hashlib.sha256(request.form['password'].encode('utf-8')).digest() pw_hashed = hashlib.sha256(request.form['password'].encode('utf-8')).digest()
pw = bcrypt.hashpw(pw_hashed, bcrypt.gensalt(16)) pw = bcrypt.hashpw(pw_hashed, bcrypt.gensalt(12))
# try to sign up # try to sign up
c = mysql.connection.cursor() c = mysql.connection.cursor()