1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-02 19:01:09 +00:00

Restore v3.6.0 kernel thread handling of scrypt

This commit is contained in:
Jens Steube 2017-08-29 18:30:50 +02:00
parent fcd20fbacb
commit 12295dcd90

View File

@ -24935,11 +24935,11 @@ u32 hashconfig_get_kernel_threads (hashcat_ctx_t *hashcat_ctx, const hc_device_p
if (scrypt_l) if (scrypt_l)
{ {
kernel_threads = 64 / scrypt_l; kernel_threads = 256 / scrypt_l;
} }
else else
{ {
kernel_threads = 64; kernel_threads = 256;
} }
} }