From c3fe111c0efd34d855c666c2621456f4a62cf406 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 6 Sep 2024 15:40:41 +0200 Subject: [PATCH] pySim.commands: use _checksw during get_data() method All other methods use send_apdu_checksw, just get_data() was missing the _checksw part. Change-Id: Ic784bf0c30b22e5e83843aa6694e2706b4b2ac48 --- pySim/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pySim/commands.py b/pySim/commands.py index f13e18bf..5c5933ac 100644 --- a/pySim/commands.py +++ b/pySim/commands.py @@ -794,8 +794,9 @@ class SimCardCommands: data, sw = self.send_apdu_checksw('8076010008' + token, apply_lchan = False) return (data, sw) + # GPC_SPE_034 11.3 def get_data(self, tag: int, cla: int = 0x00): - data, sw = self.send_apdu('%02xca%04x00' % (cla, tag)) + data, sw = self.send_apdu_checksw('%02xca%04x00' % (cla, tag)) return (data, sw) # TS 31.102 Section 7.5.2