This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/util/gravatar.py

6 lines
114 B
Python
Raw Normal View History

2013-09-27 22:15:31 +00:00
import hashlib
def compute_hash(email_address):
return hashlib.md5(email_address.strip().lower()).hexdigest()