From e6801c1c460dd206465a7853ad4bf1f0c7817c1f Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Thu, 9 Nov 2023 20:56:33 -0500 Subject: [PATCH] sao: add logging --- titles/sao/index.py | 1 + 1 file changed, 1 insertion(+) diff --git a/titles/sao/index.py b/titles/sao/index.py index 1a55885..28da89a 100644 --- a/titles/sao/index.py +++ b/titles/sao/index.py @@ -131,5 +131,6 @@ class SaoServlet(BaseServlet): cipher = Blowfish.new(self.game_cfg.crypt.key, Blowfish.MODE_CBC, iv) data_crypt = cipher.encrypt(resp[24:]) resp = resp[:24] + iv + data_crypt + self.logger.debug(f"Encrypted Response: {resp.hex()}") return resp \ No newline at end of file