数据加密python
时间: 2023-11-09 14:03:27 浏览: 153
python数据加密的几种方式(csdn)————程序.pdf
要进行数据加密,可以使用Python中的cryptography库。该库提供了许多加密算法,如AES、Blowfish、TripleDES等。以下是一个使用AES算法进行加密和解密的示例代码:
```python
from cryptography.fernet import Fernet
# 生成密钥
key = Fernet.generate_key()
# 创建Fernet对象
f = Fernet(key)
# 要加密的数据
data = b"Hello World!"
# 加密数据
encrypted_data = f.encrypt(data)
# 解密数据
decrypted_data = f.decrypt(encrypted_data)
print("原始数据:", data)
print("加密后的数据:", encrypted_data)
print("解密后的数据:", decrypted_data)
```
阅读全文