mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
mfkey32_moebius: no need to wait for 20 keys to see there are more than 1 key...
This commit is contained in:
parent
ffd5601325
commit
809b6c881a
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ bool mfkey32_moebius(nonces_t *data, uint64_t *outputkey) {
|
||||||
if (data->ar2 == (crypto1_word(t, 0, 0) ^ p641)) {
|
if (data->ar2 == (crypto1_word(t, 0, 0) ^ p641)) {
|
||||||
outkey = key;
|
outkey = key;
|
||||||
++counter;
|
++counter;
|
||||||
if (counter == 20) break;
|
if (counter == 2) break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
isSuccess = (counter == 1);
|
isSuccess = (counter == 1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue