utils.py 99 B

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