fixes #1624: increase esalt/nonce buffer to 1024 for -m 11400 = SIP
This commit is contained in:
+1
-1
@@ -1234,7 +1234,7 @@ typedef struct sip
|
||||
u32 salt_buf[32];
|
||||
u32 salt_len;
|
||||
|
||||
u32 esalt_buf[48];
|
||||
u32 esalt_buf[256];
|
||||
u32 esalt_len;
|
||||
|
||||
} sip_t;
|
||||
|
||||
@@ -69,7 +69,7 @@ __kernel void m11400_mxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
|
||||
const u32 esalt_len = esalt_bufs[digests_offset].esalt_len;
|
||||
|
||||
u32x esalt_buf[48] = { 0 };
|
||||
u32x esalt_buf[256] = { 0 };
|
||||
|
||||
for (int i = 0, idx = 0; i < esalt_len; i += 4, idx += 1)
|
||||
{
|
||||
@@ -201,7 +201,7 @@ __kernel void m11400_sxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
|
||||
const u32 esalt_len = esalt_bufs[digests_offset].esalt_len;
|
||||
|
||||
u32x esalt_buf[48] = { 0 };
|
||||
u32x esalt_buf[256] = { 0 };
|
||||
|
||||
for (int i = 0, idx = 0; i < esalt_len; i += 4, idx += 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user