]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/emv/emvcore.c
FIDO U2F NFC authenticators (#697)
[proxmark3-svn] / client / emv / emvcore.c
index 98ecc5b04ba8d43c4ca4c4965d0782682eb2b8fb..c12591148766bd4c3ffd48ac66e185339b6879ae 100644 (file)
@@ -266,9 +266,14 @@ int EMVExchangeEx(bool ActivateField, bool LeaveFieldON, sAPDU apdu, bool Includ
                *sw = isw;
 
        if (isw != 0x9000) {
-               if (APDULogging)
-                       PrintAndLog("APDU(%02x%02x) ERROR: [%4X] %s", apdu.CLA, apdu.INS, isw, GetAPDUCodeDescription(*sw >> 8, *sw & 0xff));
-               return 5;
+               if (APDULogging) {
+                       if (*sw >> 8 == 0x61) {
+                               PrintAndLog("APDU chaining len:%02x -->", *sw & 0xff);
+                       } else {
+                               PrintAndLog("APDU(%02x%02x) ERROR: [%4X] %s", apdu.CLA, apdu.INS, isw, GetAPDUCodeDescription(*sw >> 8, *sw & 0xff));
+                               return 5;
+                       }
+               }
        }
 
        // add to tlv tree
Impressum, Datenschutz