From: Jens Steube Date: Fri, 20 May 2016 13:47:42 +0000 (+0200) Subject: Respect eventual already cracked hashes from potfile when generating the bitmaps X-Git-Tag: v3.00~166 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=bfb669f9c3b955990f8f22ba3f1268adf06f9342;p=hashcat.git Respect eventual already cracked hashes from potfile when generating the bitmaps --- diff --git a/src/hashcat.c b/src/hashcat.c index 8d222b4..9c59488 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -5211,6 +5211,8 @@ static uint generate_bitmaps (const uint digests_cnt, const uint dgst_size, cons for (uint i = 0; i < digests_cnt; i++) { + if (data.digests_shown[i] == 1) continue; // can happen with potfile + uint *digest_ptr = (uint *) digests_buf_ptr; digests_buf_ptr += dgst_size;