Skip to content

Commit

Permalink
Update decode.py
Browse files Browse the repository at this point in the history
  • Loading branch information
smallfawn authored Jun 28, 2024
1 parent c2c64f8 commit a91daa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ def decrypt_nested(data):
content = file.read().strip()
# 打印内容
encoded_data = extract_base64_encoded(content)
print(encoded_data)
#print(encoded_data)
# 解密嵌套加密数据
final_decrypted_data = decrypt_nested(encoded_data)

final_decrypted_data_str = final_decrypted_data.decode('utf-8') # 根据实际编码调整 utf-8
# 输出最终解密结果
print("最终解密结果:")
print("#"+formatted_date + "\n"+final_decrypted_data)
Expand Down

0 comments on commit a91daa9

Please sign in to comment.