1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 00:01:16 +00:00

Fix some use of pw_t tmp variable

This commit is contained in:
jsteube 2017-08-26 19:48:38 +02:00
parent 5e01ff4c53
commit e3810d054b
2 changed files with 6 additions and 6 deletions

View File

@ -551,7 +551,7 @@ __kernel void m03000_mxx (__global pw_t *pws, __constant const kernel_rule_t *ru
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 d = key[1];
@ -648,7 +648,7 @@ __kernel void m03000_sxx (__global pw_t *pws, __constant const kernel_rule_t *ru
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 d = key[1];

View File

@ -285,9 +285,9 @@ __kernel void m08600_mxx (__global pw_t *pws, __constant const kernel_rule_t *ru
* 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]);
}
@ -361,9 +361,9 @@ __kernel void m08600_sxx (__global pw_t *pws, __constant const kernel_rule_t *ru
* 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]);
}