如何使用python从二进制文件中读取数据

时间:2016-05-13 05:08:04

标签: python smartcard apdu pyscard

我想从智能卡中检索证书数据。通过使用“PyScard”实用程序中的SCardTransmit函数,我们可以通过发送apdu来获取数据。但是文件的长度太大了。任何人都可以帮助我以字符串格式获取数据以及如何获取数据。 我在C中的代码看起来像:

    dwLenExpected = ( ( dwOffset + 0xFD ) > dwCertFileSize )?
                                        dwLenExpected : 0xFD;


    Execute the command and get the data copy the data from receive buffer using "memcpy" and increase the offset by length 

    dwOffset += 0xFD;

现在我想在python中实现它。 任何帮助表示赞赏。 提前谢谢

0 个答案:

没有答案