Python 计算 MD5 散列值
目录
def get_md5_string(content)->str:
"""
- content: bytes or string
"""
m = hashlib.md5()
if type(content) == bytes:
m.update(content)
elif type(content) == str:
m.update(content.encode())
else:
return None
return m.hexdigest()