mirror of https://github.com/zulip/zulip.git
6 lines
150 B
Python
6 lines
150 B
Python
|
import hashlib
|
||
|
|
||
|
def gravatar_hash(email):
|
||
|
"""Compute the Gravatar hash for an email address."""
|
||
|
return hashlib.md5(email.lower()).hexdigest()
|