python aes ecb 解密
时间: 2023-10-19 22:07:09 浏览: 162
aes-python:用 Python 编写的单向 128 位 AES ECB 加密
要使用Python解密AES ECB加密的数据,可以使用PyCryptodome库。以下是一个示例代码:
```python
from Crypto.Cipher import AES
import base64
key = b'your_key_here'
cipher_text = b'encrypted_text_here'
cipher = AES.new(key, AES.MODE_ECB)
decoded_text = base64.b64decode(cipher_text)
decrypted_text = cipher.decrypt(decoded_text)
print(decrypted_text.decode())
```
其中,`key`是你的AES密钥,`cipher_text`是经过AES ECB加密后的数据。输出的`decrypted_text`即为解密后的明文。
阅读全文