md5加密的实现

root
abc abc
  • 20 Jul

import hashlib

data = '你好'

hashlib.md5(data.encode(encoding='UTF-8')).hexdigest()

```