2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2012-10-10 16:59:59 +02:00
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
import hashlib
|
|
|
|
import base64
|
|
|
|
|
2016-12-21 13:17:53 +01:00
|
|
|
from typing import Optional, Text
|
2016-06-04 20:38:42 +02:00
|
|
|
|
|
|
|
|
2012-10-10 16:59:59 +02:00
|
|
|
def initial_password(email):
|
2016-12-21 13:17:53 +01:00
|
|
|
# type: (Text) -> Optional[Text]
|
2012-10-10 16:59:59 +02:00
|
|
|
"""Given an email address, returns the initial password for that account, as
|
|
|
|
created by populate_db."""
|
|
|
|
|
2013-11-12 18:20:05 +01:00
|
|
|
if settings.INITIAL_PASSWORD_SALT is not None:
|
2016-01-24 05:18:35 +01:00
|
|
|
encoded_key = (settings.INITIAL_PASSWORD_SALT + email).encode("utf-8")
|
|
|
|
digest = hashlib.sha256(encoded_key).digest()
|
2016-06-17 17:03:09 +02:00
|
|
|
return base64.b64encode(digest)[:16].decode('utf-8')
|
2013-11-12 18:20:05 +01:00
|
|
|
else:
|
|
|
|
# None as a password for a user tells Django to set an unusable password
|
2016-01-24 05:18:35 +01:00
|
|
|
return None
|