python实现md5加密代码
时间: 2024-03-02 12:45:55 浏览: 162
以下是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)
```
阅读全文