1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-03-17 20:57:54 +02:00

Switch to 1000 rounds for tokens (performance)

This commit is contained in:
kaiyou 2017-10-29 15:39:14 +01:00
parent 30dfefb24d
commit 51c301ec56

View File

@ -266,7 +266,7 @@ class Token(Base):
return hash.sha256_crypt.verify(password, self.password)
def set_password(self, password):
self.password = hash.sha256_crypt.hash(password)
self.password = hash.sha256_crypt.using(rounds=1000).hash(password)
def __str__(self):
return self.comment