1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 19:28:56 +00:00

Respect eventual already cracked hashes from potfile when generating the bitmaps

This commit is contained in:
Jens Steube 2016-05-20 15:47:42 +02:00
parent 5d5d1a5843
commit bfb669f9c3

View File

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