237| 7
|
[其他求助] 密钥已知DES解密英文正常中文乱码 |
发表于 2024-11-3 16:18
200吾爱币
最佳答案[mw_shl_code=python,true]from Crypto.Cipher import DES
from base64 import b64decode
from Crypto.Util.Padding import unpad
with open('encrypted_data.txt', 'r', encoding='utf-8') as f:
encrypted_data = f.read()
# 大概率的加密方式:DES/CBC/PKCS5Padding
# 密钥:iscooler
key = 'iscooler'.encode()
iv = b'12345678' # 需要一个8字节的IV
encrypted_data = b64decode(encrypted_data)
cryptor ...
| ||
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
||
发表于 2024-11-3 16:18
免费评分 | ||
|
发表于 2024-11-3 16:21
| ||
|
发表于 2024-11-3 17:05
| ||
|
发表于 2024-11-3 17:09
| ||
发表于 2024-11-3 17:46
| ||
|
发表于 2024-11-3 18:21
| ||
RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )
GMT+8, 2024-11-25 00:00
Powered by Discuz!
Copyright © 2001-2020, Tencent Cloud.