python对称加密算法怎么实现

avatar
作者
筋斗云
阅读量:0

Python中可以使用cryptography库来实现对称加密算法。以下是一个使用AES加密算法的示例:

from cryptography.fernet import Fernet # 生成密钥 key = Fernet.generate_key() # 创建Fernet对象 cipher = Fernet(key) # 加密数据 plaintext = b"Hello, World!" ciphertext = cipher.encrypt(plaintext) print(f"Ciphertext: {ciphertext}") # 解密数据 decrypted_text = cipher.decrypt(ciphertext) print(f"Decrypted text: {decrypted_text}") 

在这个示例中,我们首先生成一个随机密钥并使用它创建一个Fernet对象,然后使用encrypt方法来加密数据,使用decrypt方法来解密数据。

请注意,cryptography库支持的对称加密算法不仅限于AES,还支持其他算法如DES、3DES等。你可以根据需要选择合适的算法。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!