tlv decoder works.

This commit is contained in:
merlokk 2017-11-02 14:11:42 +02:00
commit 23207d748f
3 changed files with 3 additions and 26 deletions

View file

@ -760,7 +760,7 @@ int CmdHF14AAPDU(const char *cmd) {
PrintAndLog("APDU response: %02x %02x - %s", data[datalen - 2], data[datalen - 1], GetAPDUCodeDescription(data[datalen - 2], data[datalen - 1]));
// here TLV decoder...
// TLV decoder
if (decodeTLV && datalen > 4) {
TLVPrintFromBuffer(data, datalen - 2);
}