utils.py 106 B

12345
  1. import hashlib
  2. def hash_email(email):
  3. return hashlib.md5(email.lower().encode('utf-8')).hexdigest()