mirror of
https://github.com/hashcat/hashcat.git
synced 2025-06-26 01:42:36 +00:00
Fix some use of pw_t tmp variable
This commit is contained in:
parent
5e01ff4c53
commit
e3810d054b
@ -551,7 +551,7 @@ __kernel void m03000_mxx (__global pw_t *pws, __constant const kernel_rule_t *ru
|
|||||||
|
|
||||||
u32 key[2];
|
u32 key[2];
|
||||||
|
|
||||||
transform_netntlmv1_key (tmp.i[0], tmp.i[0], key);
|
transform_netntlmv1_key (tmp.i[0], tmp.i[1], key);
|
||||||
|
|
||||||
const u32 c = key[0];
|
const u32 c = key[0];
|
||||||
const u32 d = key[1];
|
const u32 d = key[1];
|
||||||
@ -648,7 +648,7 @@ __kernel void m03000_sxx (__global pw_t *pws, __constant const kernel_rule_t *ru
|
|||||||
|
|
||||||
u32 key[2];
|
u32 key[2];
|
||||||
|
|
||||||
transform_netntlmv1_key (tmp.i[0], tmp.i[0], key);
|
transform_netntlmv1_key (tmp.i[0], tmp.i[1], key);
|
||||||
|
|
||||||
const u32 c = key[0];
|
const u32 c = key[0];
|
||||||
const u32 d = key[1];
|
const u32 d = key[1];
|
||||||
|
@ -285,9 +285,9 @@ __kernel void m08600_mxx (__global pw_t *pws, __constant const kernel_rule_t *ru
|
|||||||
* padding
|
* padding
|
||||||
*/
|
*/
|
||||||
|
|
||||||
pad (tmp.i, out_len);
|
pad (tmp.i, tmp.pw_len);
|
||||||
|
|
||||||
domino_big_md (tmp.i, out_len, state, s_lotus_magic_table);
|
domino_big_md (tmp.i, tmp.pw_len, state, s_lotus_magic_table);
|
||||||
|
|
||||||
COMPARE_M_SIMD (state[0], state[1], state[2], state[3]);
|
COMPARE_M_SIMD (state[0], state[1], state[2], state[3]);
|
||||||
}
|
}
|
||||||
@ -361,9 +361,9 @@ __kernel void m08600_sxx (__global pw_t *pws, __constant const kernel_rule_t *ru
|
|||||||
* padding
|
* padding
|
||||||
*/
|
*/
|
||||||
|
|
||||||
pad (tmp.i, out_len);
|
pad (tmp.i, tmp.pw_len);
|
||||||
|
|
||||||
domino_big_md (tmp.i, out_len, state, s_lotus_magic_table);
|
domino_big_md (tmp.i, tmp.pw_len, state, s_lotus_magic_table);
|
||||||
|
|
||||||
COMPARE_S_SIMD (state[0], state[1], state[2], state[3]);
|
COMPARE_S_SIMD (state[0], state[1], state[2], state[3]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user