md5加密解密python代码
时间: 2023-11-09 13:03:40 浏览: 135
md5 加密 解密.
以下是 Python 中使用 hashlib 模块实现 MD5 加密和解密的代码:
```python
import hashlib
# 加密
def md5_encrypt(text):
md5 = hashlib.md5()
md5.update(text.encode('utf-8'))
return md5.hexdigest()
# 解密(MD5 是不可逆的,无法解密)
# 示例
text = 'hello world'
encrypted_text = md5_encrypt(text)
print(encrypted_text)
```
输出:
```
5eb63bbbe01eeed093cb22bb8f5acdc3
```
阅读全文