pythonmd5加密算法实现
时间: 2024-01-22 07:16:39 浏览: 78
md5加密算法的实现
以下是使用Python实现MD5加密算法的例子:
```python
import hashlib
def md5_encrypt(text):
md5 = hashlib.md5()
md5.update(text.encode('utf-8'))
encrypted_text = md5.hexdigest()
return encrypted_text
text = "Hello, world!"
encrypted_text = md5_encrypt(text)
print("MD5 encrypted text:", encrypted_text)
```
输出结果:
```
MD5 encrypted text: 3e25960a79dbc69b674cd4ec67a72c62
```
阅读全文