From: jsteube Date: Fri, 10 Jun 2016 17:03:29 +0000 (+0200) Subject: Fixed DES kernel_loops only in case of BF X-Git-Tag: v3.00~74 X-Git-Url: https://www.flypig.org.uk/git/?p=hashcat.git;a=commitdiff_plain;h=1c695b1185ea8099c6804100836f2f7f10c8156c Fixed DES kernel_loops only in case of BF --- diff --git a/src/hashcat.c b/src/hashcat.c index dd9b03b..f74ce20 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -14680,7 +14680,7 @@ int main (int argc, char **argv) * some algorithms need a fixed kernel-loops count */ - if (hash_mode == 1500) + if (hash_mode == 1500 && attack_mode == ATTACK_MODE_BF) { const u32 kernel_loops_fixed = 1024; @@ -14688,7 +14688,7 @@ int main (int argc, char **argv) device_param->kernel_loops_max = kernel_loops_fixed; } - if (hash_mode == 3000) + if (hash_mode == 3000 && attack_mode == ATTACK_MODE_BF) { const u32 kernel_loops_fixed = 1024;