From a91daa9579473622fcecdcba913708416ede19ad Mon Sep 17 00:00:00 2001 From: smallfawn <101914820+smallfawn@users.noreply.github.com> Date: Fri, 28 Jun 2024 14:31:08 +0800 Subject: [PATCH] Update decode.py --- src/decode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/decode.py b/src/decode.py index 40fc4f5..3a9bd13 100644 --- a/src/decode.py +++ b/src/decode.py @@ -88,10 +88,10 @@ with open('./input.py', 'r') as file: 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)