mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
simpler
This commit is contained in:
parent
70d9619f8a
commit
944d6ee596
1 changed files with 1 additions and 1 deletions
|
@ -1414,7 +1414,7 @@ static int CmdHFiClassDecrypt(const char *Cmd) {
|
||||||
|
|
||||||
if (decrypted_block789) {
|
if (decrypted_block789) {
|
||||||
// Set the 2 last bits of block6 to 0 to mark the data as decrypted
|
// Set the 2 last bits of block6 to 0 to mark the data as decrypted
|
||||||
decrypted[(6 * 8) + 7] = decrypted[(6 * 8) + 7] & 0xfc;
|
decrypted[(6 * 8) + 7] &= 0xFC;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue