mirror of
https://github.com/zulip/zulip.git
synced 2025-11-07 07:23:22 +00:00
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()
|