diff --git a/src/decode.py b/src/decode.py index 3a9bd138e..604e649f8 100644 --- a/src/decode.py +++ b/src/decode.py @@ -91,9 +91,7 @@ def decrypt_nested(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) +#print("最终解密结果:") with open("./onput.py", 'wb') as f: f.write(final_decrypted_data)