mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 06:13:27 -07:00
added 1 byte after apdu in select command (Le == 0)
This commit is contained in:
parent
c08aac69ed
commit
3d077d3d34
1 changed files with 2 additions and 2 deletions
|
@ -155,9 +155,9 @@ int EMVSelect(bool ActivateField, bool LeaveFieldON, uint8_t *AID, size_t AIDLen
|
|||
DropField();
|
||||
|
||||
if (APDULogging)
|
||||
PrintAndLog(">>>> %s", sprint_hex(data, AIDLen + 5));
|
||||
PrintAndLog(">>>> %s", sprint_hex(data, AIDLen + 6));
|
||||
|
||||
int res = ExchangeAPDU14a(data, AIDLen + 5, ActivateField, LeaveFieldON, Result, (int *)ResultLen);
|
||||
int res = ExchangeAPDU14a(data, AIDLen + 6, ActivateField, LeaveFieldON, Result, (int *)ResultLen);
|
||||
|
||||
if (APDULogging)
|
||||
PrintAndLog("<<<< %s", sprint_hex(Result, *ResultLen));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue