@@ -5,4 +5,4 @@ def hash_email(email):
email = email.lower()
while len(email) < 15:
email *= 2
- return hashlib.sha256(email).hexdigest()
+ return hashlib.md5(email).hexdigest()