From d6fefea185736d9087055398268fb1f53d8fbb2a Mon Sep 17 00:00:00 2001 From: smallfawn <101914820+smallfawn@users.noreply.github.com> Date: Fri, 28 Jun 2024 14:58:41 +0800 Subject: [PATCH] Update decode.py --- src/decode.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/decode.py b/src/decode.py index 3a9bd13..604e649 100644 --- a/src/decode.py +++ b/src/decode.py @@ -91,9 +91,7 @@ with open('./input.py', 'r') as file: #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) +#print("最终解密结果:") with open("./onput.py", 'wb') as f: f.write(final_decrypted_data)