1
0
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:
jsteube 2017-08-17 12:16:49 +02:00
parent cd5470f00e
commit 53f53fe014

View File

@ -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++)
{