This repository has been archived on 2020-03-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
quay/util/gravatar.py
2013-09-27 18:15:31 -04:00

5 lines
114 B
Python

import hashlib
def compute_hash(email_address):
return hashlib.md5(email_address.strip().lower()).hexdigest()