commands: Fix bug in verify_chv.

Didn't get adapted properly to support several transports ...

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2010-12-23 20:28:58 +01:00
parent 9f120e0169
commit 530076ebba
1 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from pySim.utils import rpad, b2h
class SimCardCommands(object):
def __init__(self, transport):
@ -90,4 +92,4 @@ class SimCardCommands(object):
def verify_chv(self, chv_no, code):
fc = rpad(b2h(code), 16)
return self.send_apdu('a02000' + ('%02x' % chv_no) + '08' + fc)
return self._tp.send_apdu('a02000' + ('%02x' % chv_no) + '08' + fc)