51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Python AES对称加密算法用法

第一步:需要安装Crypto库

pip install pycryptodome

第二步:具体实现

psd = b'tasXSG2R4j55' # 秘钥:字节
text = 'hello word' 
cipher = AES.new(psd, AES.MODE_ECB)  # 创建加密对象
# 对明文填充,然后使用AES加密算法进行加密
encrypted_data = cipher.encrypt(pad(text.encode(), AES.block_size))
print(base64.b64encode(encrypted_data).decode())  # 输出结果
赞(0)
未经允许不得转载:工具盒子 » Python AES对称加密算法用法