From 0e7bb074e629ec020b3b41da503241d31a0d3c83 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 15 Jul 2017 18:05:25 +0200 Subject: [PATCH] Allow some oversized salt-length with dedicated kernels --- src/interface.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/interface.c b/src/interface.c index 37e3013a8..33be61795 100644 --- a/src/interface.c +++ b/src/interface.c @@ -24727,6 +24727,14 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx) hashconfig->salt_min *= 2; hashconfig->salt_max *= 2; } + + switch (hashconfig->hash_mode) + { + case 11000: hashconfig->salt_min = 56; + hashconfig->salt_max = 56; break; + case 12600: hashconfig->salt_min = 64; + hashconfig->salt_max = 64; break; + } } return 0;