From bc3f520b73456beaab080251629e9bbc9a8a53b3 Mon Sep 17 00:00:00 2001 From: pwpiwi Date: Thu, 26 Nov 2015 21:36:56 +0100 Subject: [PATCH] Implementing hf mf hardnested - fixed a bug in nonce acquisition status messages --- client/cmdhfmfhard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdhfmfhard.c b/client/cmdhfmfhard.c index 914fec61..6cd5a5b9 100644 --- a/client/cmdhfmfhard.c +++ b/client/cmdhfmfhard.c @@ -593,9 +593,9 @@ int static acquire_nonces(uint8_t blockNo, uint8_t keyType, uint8_t *key, uint8_ if (total_num_nonces > next_fivehundred) { next_fivehundred = (total_num_nonces/500+1) * 500; printf("Acquired %5d nonces (%5d with distinct bytes 0 and 1). Number of bytes with probability for correctly guessed Sum(a8) > %1.1f%%: %d\n", - CONFIDENCE_THRESHOLD * 100.0, total_num_nonces, total_added_nonces, + CONFIDENCE_THRESHOLD * 100.0, num_good_first_bytes); } if (num_good_first_bytes >= GOOD_BYTES_REQUIRED) {