mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-30 20:23:46 +08:00
chg: 'hf mf fchk' - reversing assumption. This really helped :)
This commit is contained in:
parent
033bc12933
commit
bf74302679
1 changed files with 4 additions and 3 deletions
|
@ -1319,10 +1319,11 @@ void MifareChkKeys_fast(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *da
|
|||
chkKey_scanB(&chk_data, k_sector, found, §orcnt, &foundkeys);
|
||||
}
|
||||
}
|
||||
} // end loop - depth first
|
||||
|
||||
// assume1. if we already some keys, time to quit this keyblock?
|
||||
if ( newfound-foundkeys > 0 )
|
||||
} // end keys test loop - depth first
|
||||
|
||||
// assume1. if no keys found in first sector, get next keychunk from client
|
||||
if ( newfound-foundkeys == 0 )
|
||||
goto OUT;
|
||||
|
||||
} // end loop - sector
|
||||
|
|
Loading…
Reference in a new issue