From da7e7b1ded22dfc2766cf18dfcefb66c06f06cd2 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Thu, 8 Jun 2023 15:51:03 +0200 Subject: [PATCH] sysmo_isim_sja2: generalize SRES derivation function text When we print which SRES derivation function is selected, we prefix the text output with "Milenage: ", this is not entirely correct, other algorithm also support this setting (TUAK, XOR 3G...), so let's generalize the text. --- sysmo_isim_sja2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysmo_isim_sja2.py b/sysmo_isim_sja2.py index 7df5504..b6dfbed 100644 --- a/sysmo_isim_sja2.py +++ b/sysmo_isim_sja2.py @@ -126,7 +126,7 @@ class SYSMO_ISIMSJA2_FILE_EF_XSIM_AUTH_KEY: else: dump += pfx + "Milenage: use OP\n" - dump += pfx + "Milenage: use SRES deviation function " + str(self.sres_dev_func) + "\n" + dump += pfx + "use SRES deviation function (if applicable) " + str(self.sres_dev_func) + "\n" return dump