mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-23 16:38:29 +00:00
Limit scrypt to 64 threads has no performance impact but makes it easier to handle
This commit is contained in:
parent
8702d0e3e1
commit
6be99f523c
@ -15011,7 +15011,9 @@ int main (int argc, char **argv)
|
||||
if (hash_mode == 3000) kernel_threads = 64; // DES
|
||||
if (hash_mode == 3200) kernel_threads = 8; // Blowfish
|
||||
if (hash_mode == 7500) kernel_threads = 64; // RC4
|
||||
if (hash_mode == 8900) kernel_threads = 64; // Scrypt
|
||||
if (hash_mode == 9000) kernel_threads = 8; // Blowfish
|
||||
if (hash_mode == 9300) kernel_threads = 64; // Scrypt
|
||||
if (hash_mode == 9700) kernel_threads = 64; // RC4
|
||||
if (hash_mode == 9710) kernel_threads = 64; // RC4
|
||||
if (hash_mode == 9800) kernel_threads = 64; // RC4
|
||||
|
Loading…
Reference in New Issue
Block a user