- md5加密
import hashlib
#md5加密
#如token简单加密
data = str({
'user':'xxx',
'password':xxx
})
md5 = hashlib.md5()
md5.update(data.encode('utf8'))
res = md5.hexdigest()
- 生成的加密串
12b7ed0795d849ecd7c0594ccf6fa877
import hashlib
#md5加密
#如token简单加密
data = str({
'user':'xxx',
'password':xxx
})
md5 = hashlib.md5()
md5.update(data.encode('utf8'))
res = md5.hexdigest()
12b7ed0795d849ecd7c0594ccf6fa877
本文标题:md5加密
本文链接:https://www.haomeiwen.com/subject/urwcjhtx.html
网友评论