mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
Previously we were generating API keys deterministically using a hash of the user's email address; this is clearly not a good long-term approach. (imported from commit 14d0c7c9edbc45b3ae1d17a43765ad9726338d4d)
14 lines
367 B
Python
14 lines
367 B
Python
from __future__ import absolute_import
|
|
|
|
from django.conf import settings
|
|
|
|
import hashlib
|
|
import base64
|
|
|
|
def initial_password(email):
|
|
"""Given an email address, returns the initial password for that account, as
|
|
created by populate_db."""
|
|
|
|
digest = hashlib.sha256(settings.INITIAL_PASSWORD_SALT + email).digest()
|
|
return base64.b64encode(digest)[:16]
|