python 3DES加密解密
时间: 2023-11-05 15:04:30 浏览: 181
3des加密解密
3星 · 编辑精心推荐
python实现3DES加密解密的代码示例如下:
```python
import pyDes
# 定义密钥,长度必须为8个字符(64位)
key = b'12345678'
# 定义初始化向量,长度为8个字符(64位)
iv = b'abcdefgh'
# 创建加密器
k = pyDes.triple_des(key, pyDes.CBC, iv, pad=None, padmode=pyDes.PAD_PKCS5)
# 要加密的明文
data = b'Hello World'
# 加密
cipher_text = k.encrypt(data)
# 解密
plain_text = k.decrypt(cipher_text)
print('加密前的明文:', data)
print('加密后的密文:', cipher_text)
print('解密后的明文:', plain_text)
```
3DES的原理是:对明文进行三次加密,每次加密的密钥不同。加密时,首先使用第一个密钥对明文进行加密,然后使用第二个密钥对加密后的数据进行解密,最后再使用第三个密钥对解密后的数据进行加密。解密时,则按照相反的方式进行操作。
另外,cryptography库也提供了3DES的实现方式,代码示例如下:
```python
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
import base64
key = b'8C7BD6A28C7BD6A28C7BD6A28C7BD6A28C7BD6A28C7BD6A2' # 48位
key = base64.b16decode(key)
iv = b'3BF23BF23BF23BF2' # 16位
iv = base64.b16decode(iv)
# 需要加密的内容
message = "a secret message"
cipher = Cipher(algorithms.TripleDES(key), modes.CBC(iv))
# 加密
encryptor = cipher.encryptor()
cipher_bytes = encryptor.update(message.encode())
encryptor.finalize()
cipher_hex = cipher_bytes.hex().upper()
# 解密
cipher_bytes = bytes.fromhex(cipher_hex)
decryptor = cipher.decryptor()
plain_text_bytes = decryptor.update(cipher_bytes)
decryptor.finalize()
plain_text_str = plain_text_bytes.decode()
```
阅读全文