1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-25 07:58:19 +00:00

Fixed DES kernel_loops only in case of BF

This commit is contained in:
jsteube 2016-06-10 19:03:29 +02:00
parent 58296e1ecf
commit 1c695b1185

View File

@ -14680,7 +14680,7 @@ int main (int argc, char **argv)
* some algorithms need a fixed kernel-loops count * 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; const u32 kernel_loops_fixed = 1024;
@ -14688,7 +14688,7 @@ int main (int argc, char **argv)
device_param->kernel_loops_max = kernel_loops_fixed; 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; const u32 kernel_loops_fixed = 1024;