mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-18 03:00:58 +08:00
rename
This commit is contained in:
parent
581fe408ba
commit
04a6a63427
1 changed files with 3 additions and 3 deletions
|
@ -162,10 +162,10 @@ int ndefDecodeSig(uint8_t *sig, size_t siglen) {
|
|||
}
|
||||
|
||||
if (sig[indx] == 0x80) {
|
||||
size_t intchainlen = (sig[indx + 1] << 8) + sig[indx + 2];
|
||||
size_t inturilen = (sig[indx + 1] << 8) + sig[indx + 2];
|
||||
indx += 3;
|
||||
PrintAndLogEx(NORMAL, "\tchain [%d]: %.*s", intchainlen, intchainlen, &sig[indx]);
|
||||
indx += intchainlen;
|
||||
PrintAndLogEx(NORMAL, "\tsignature uri [%d]: %.*s", inturilen, inturilen, &sig[indx]);
|
||||
indx += inturilen;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue