1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 08:10:59 +00:00

Allow some oversized salt-length with dedicated kernels

This commit is contained in:
jsteube 2017-07-15 18:05:25 +02:00
parent 2dd1833998
commit 0e7bb074e6

View File

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