dict-server/app/utils/md5.py

6 lines
108 B
Python

from hashlib import md5
def make_md5(s, encoding='utf-8'):
return md5(s.encode(encoding)).hexdigest()