現在、pyscard を正しく使用してスマートカードと通信できますが、apdu のサイズが 255 バイトを超える場合、コマンドの残りのバイトを受信する必要があります。
pyscard の残りのバイトを取得する方法は? 私の理解では、sw2 は残りのバイト数でなければなりません。
def _cmd(self, cl, ins, p1, p2, data=''):
command = '%02x%02x%02x%02x%02x%s' % (cl, ins, p1, p2, len(data),
data.encode('hex'))
data, sw1, sw2 = self.reader.transmit(hex2cmd(command))
return data, sw1 << 8 | sw2
def _cmd_ok(self, *args, **kwargs):
data, status = self._cmd(*args, **kwargs)
if status != 0x9000:
raise Exception('APDU error: 0x%04x' % status)
return ''.join(map(chr, data))