Merge pull request #3272 from Freax13/fix-des-16-plus

fix DES (14000) for more 16 or more passwords
pull/3276/head
Jens Steube 2 years ago committed by GitHub
commit 53d293d7af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2171,8 +2171,8 @@ KERNEL_FQ void m14000_mxx (KERN_ATTR_BITSLICE ())
#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);
@ -2183,8 +2183,8 @@ KERNEL_FQ void m14000_mxx (KERN_ATTR_BITSLICE ())
#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…
Cancel
Save