mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-26 18:08:20 +00:00
This commit is contained in:
parent
d081ac2ba1
commit
0c5d32c455
@ -2077,8 +2077,8 @@ void m03000m (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global co
|
||||
#endif
|
||||
for (int i = 0; i < 32; i++)
|
||||
{
|
||||
out0[i] = out[ 0 + i];
|
||||
out1[i] = out[32 + i];
|
||||
out0[i] = out[ 0 + 31 - i];
|
||||
out1[i] = out[32 + 31 - i];
|
||||
}
|
||||
|
||||
transpose32c (out0);
|
||||
@ -2089,8 +2089,8 @@ void m03000m (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global co
|
||||
#endif
|
||||
for (int slice = 0; slice < 32; slice++)
|
||||
{
|
||||
const u32 r0 = out0[slice];
|
||||
const u32 r1 = out1[slice];
|
||||
const u32 r0 = out0[31 - slice];
|
||||
const u32 r1 = out1[31 - slice];
|
||||
const u32 r2 = 0;
|
||||
const u32 r3 = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user