mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-23 15:18:16 +00:00
Reduced number of required registers in SIP based on maximum possible esalt length
This commit is contained in:
parent
cd5470f00e
commit
53f53fe014
@ -73,7 +73,7 @@ __kernel void m11400_mxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
|
||||
const u32 esalt_lenv = ceil ((float) esalt_len / 4);
|
||||
|
||||
u32x esalt_buf[64] = { 0 };
|
||||
u32x esalt_buf[48] = { 0 };
|
||||
|
||||
for (int idx = 0; idx < esalt_lenv; idx++)
|
||||
{
|
||||
@ -209,7 +209,7 @@ __kernel void m11400_sxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
|
||||
const u32 esalt_lenv = ceil ((float) esalt_len / 4);
|
||||
|
||||
u32x esalt_buf[64] = { 0 };
|
||||
u32x esalt_buf[48] = { 0 };
|
||||
|
||||
for (int idx = 0; idx < esalt_lenv; idx++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user