You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
339 B
18 lines
339 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# @Time : 2023/6/23 17:30
|
|
# @Author : old tom
|
|
# @File : futool_lang.py
|
|
# @Project : futool-db-0.1
|
|
# @Desc :
|
|
import hashlib
|
|
|
|
|
|
def str_md5(content):
|
|
"""
|
|
字符串转MD5
|
|
"""
|
|
md5 = hashlib.md5()
|
|
md5.update(content.encode(encoding='utf-8'))
|
|
return md5.hexdigest()
|