mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 18:57:12 +08:00
CHG; the devil is in the details
This commit is contained in:
parent
584e28e54b
commit
11dee3d5a6
1 changed files with 2 additions and 2 deletions
|
@ -81,8 +81,8 @@ size_t removeParity(uint8_t *BitStream, size_t startIdx, uint8_t pLen, uint8_t p
|
||||||
j--; // overwrite parity with next data
|
j--; // overwrite parity with next data
|
||||||
// if parity fails then return 0
|
// if parity fails then return 0
|
||||||
switch (pType) {
|
switch (pType) {
|
||||||
case 3: if (BitStream[j]==1) { return 0 }; break; //should be 0 spacer bit
|
case 3: if (BitStream[j]==1) { return 0; } break; //should be 0 spacer bit
|
||||||
case 2: if (BitStream[j]==0) { return 0 }; break; //should be 1 spacer bit
|
case 2: if (BitStream[j]==0) { return 0; } break; //should be 1 spacer bit
|
||||||
default: if (parityTest(parityWd, pLen, pType) == 0) { return 0; } break; //test parity
|
default: if (parityTest(parityWd, pLen, pType) == 0) { return 0; } break; //test parity
|
||||||
}
|
}
|
||||||
bitCnt+=(pLen-1);
|
bitCnt+=(pLen-1);
|
||||||
|
|
Loading…
Reference in a new issue