zulip/zephyr/lib/initial_password.py

13 lines
328 B
Python
Raw Normal View History

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]