python怎么md5加密
时间: 2023-06-03 14:06:44 浏览: 114
python进行MD5加密源码.zip
5星 · 资源好评率100%
可以使用Python内置的hashlib模块进行md5加密,具体实现代码如下:
```
import hashlib
def md5_encode(input_str):
hash_md5 = hashlib.md5(input_str.encode())
return hash_md5.hexdigest()
input_str = '要加密的字符串'
encoded_str = md5_encode(input_str)
print(encoded_str)
```
其中,`input_str`是要进行md5加密的字符串,`md5_encode`函数就是用来进行加密操作的,加密完成后,可以通过`hexdigest()`方法获取加密后的结果并打印输出。
阅读全文