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:
parent
2dd1833998
commit
0e7bb074e6
@ -24727,6 +24727,14 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
|
|||||||
hashconfig->salt_min *= 2;
|
hashconfig->salt_min *= 2;
|
||||||
hashconfig->salt_max *= 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;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user