我想从智能卡中检索证书数据。通过使用“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中实现它。 任何帮助表示赞赏。 提前谢谢