aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2021-03-11 13:46:32 +0100
committerlaforge <laforge@osmocom.org>2021-03-23 11:54:47 +0000
commita31e9a9a68bca3f9b70fc046aec6751cbb0d9335 (patch)
treea236ae500f4c2773c7857d05cbc34848a746bbae
parent3aec87197848646f751c8825dabda6084e5ad88e (diff)
commands: better exception string for authentication failures
At the moment we use the send_apdu_checksw() method to send the APDU for ADM authentication. This method only checks if the command returns with sw = 9000. If not it raises an exception that the sw is not as expected. The user may think that this is a problem with thr reader, pcscd or pySim in the first place and may try multiple times until the card is permanently locked. A better execption string that also displays the tries which are left may be helpful. Change-Id: Icf428831094f8c1045eefaa8cb2b92e6a36b0c13 Related: OS#4963
-rw-r--r--pySim/commands.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pySim/commands.py b/pySim/commands.py
index 2fb1041..9aed588 100644
--- a/pySim/commands.py
+++ b/pySim/commands.py
@@ -205,4 +205,7 @@ class SimCardCommands(object):
def verify_chv(self, chv_no, code):
fc = rpad(b2h(code), 16)
- return self._tp.send_apdu_checksw(self.cla_byte + '2000' + ('%02X' % chv_no) + '08' + fc)
+ data, sw = self._tp.send_apdu(self.cla_byte + '2000' + ('%02X' % chv_no) + '08' + fc)
+ if (sw != '9000'):
+ raise RuntimeError('Failed to authenticate with ADM key %s, %i tries left.' % (code, int(sw[3])))
+ return (data,sw)