mfkey32_moebius: no need to wait for 20 keys to see there are more than 1 key...

This commit is contained in:
Philippe Teuwen 2024-10-15 23:41:29 +02:00
commit 809b6c881a

View file

@ -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);