Skip to content
Snippets Groups Projects
Commit acc8b01b authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[ui][registration][model] Fix sha1 generation

parent 953d71fa
No related branches found
No related tags found
1 merge request!2551.4.x
......@@ -258,8 +258,8 @@ class RegistrationManager(models.Manager):
username and a random salt.
"""
salt = hashlib.sha1(str(random.random())).hexdigest()[:5]
activation_key = hashlib.sha1(salt+user.username).hexdigest()
salt = hashlib.sha1(str(random.random()).encode()).hexdigest()[:5]
activation_key = hashlib.sha1((salt+user.username).encode()).hexdigest()
return self.create(user=user,
activation_key=activation_key)
......
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