utils.py 90 B

12345
  1. import hashlib
  2. def hash_email(email):
  3. return hashlib.md5(email.lower()).hexdigest()