mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Improved hf iclass legrec speed
Improved the speed of hficlass legrec from 7200 keys / hrs to 17800 keys / hr by removing the need to drop the field and re-select, re-authenticate with the card at every loop. Re-select and re-authenticate will still happen if there's a read error and a loop needs to be repeated.
This commit is contained in:
parent
0fc3d533e6
commit
d654f6e78f
2 changed files with 78 additions and 32 deletions
|
@ -4842,7 +4842,7 @@ static int CmdHFiClassLegacyRecSim(void) {
|
|||
PrintAndLogEx(SUCCESS, "Original Key: " _GREEN_("%s"), sprint_hex(original_key, sizeof(original_key)));
|
||||
PrintAndLogEx(SUCCESS, "Weak Key: " _GREEN_("%s"), sprint_hex(key, sizeof(key)));
|
||||
PrintAndLogEx(SUCCESS, "Key Updates Required to Weak Key: " _GREEN_("%d"), index);
|
||||
PrintAndLogEx(SUCCESS, "Estimated Time: ~" _GREEN_("%d")" hours", index / 7250);
|
||||
PrintAndLogEx(SUCCESS, "Estimated Time: ~" _GREEN_("%d")" hours", index / 17800);
|
||||
}
|
||||
|
||||
index++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue