mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-13 16:43:26 +08:00
support v2.0 ndef sigs
This commit is contained in:
parent
63e06e1738
commit
8dd19a00c5
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ static int ndefPrintHeader(NDEFHeader_t *header) {
|
|||
static int ndefDecodeSig(uint8_t *sig, size_t siglen) {
|
||||
size_t indx = 0;
|
||||
PrintAndLogEx(NORMAL, "\tsignature version: 0x%02x", sig[0]);
|
||||
if (sig[0] != 0x01) {
|
||||
if (sig[0] != 0x01 && sig[0] != 0x20) {
|
||||
PrintAndLogEx(ERR, "signature version unknown.");
|
||||
return PM3_ESOFT;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue