mirror of
https://github.com/hashcat/hashcat
synced 2024-11-20 23:27:31 +01:00
fix DES (14000) for more 16 or more passwords
This commit is contained in:
parent
d1ebf936b7
commit
864fee3674
@ -2171,8 +2171,8 @@ KERNEL_FQ void m14000_mxx (KERN_ATTR_BITSLICE ())
|
|||||||
#endif
|
#endif
|
||||||
for (int i = 0; i < 32; i++)
|
for (int i = 0; i < 32; i++)
|
||||||
{
|
{
|
||||||
out0[i] = out[ 0 + i];
|
out0[i] = out[ 0 + 31 - i];
|
||||||
out1[i] = out[32 + i];
|
out1[i] = out[32 + 31 - i];
|
||||||
}
|
}
|
||||||
|
|
||||||
transpose32c (out0);
|
transpose32c (out0);
|
||||||
@ -2183,8 +2183,8 @@ KERNEL_FQ void m14000_mxx (KERN_ATTR_BITSLICE ())
|
|||||||
#endif
|
#endif
|
||||||
for (int slice = 0; slice < 32; slice++)
|
for (int slice = 0; slice < 32; slice++)
|
||||||
{
|
{
|
||||||
const u32 r0 = out0[slice];
|
const u32 r0 = out0[31 - slice];
|
||||||
const u32 r1 = out1[slice];
|
const u32 r1 = out1[31 - slice];
|
||||||
const u32 r2 = 0;
|
const u32 r2 = 0;
|
||||||
const u32 r3 = 0;
|
const u32 r3 = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user