diff --git a/OpenCL/m01500_a3.cl b/OpenCL/m01500_a3.cl index 4e9ba1d2f..aa9387d36 100644 --- a/OpenCL/m01500_a3.cl +++ b/OpenCL/m01500_a3.cl @@ -2203,8 +2203,8 @@ static void m01500m (__global pw_t *pws, __global const kernel_rule_t *rules_buf #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); @@ -2215,8 +2215,8 @@ static void m01500m (__global pw_t *pws, __global const kernel_rule_t *rules_buf #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; diff --git a/docs/changes.txt b/docs/changes.txt index 52ee1f167..ebd0d83c2 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -22,7 +22,8 @@ ## Bugs ## -- Fixed a problem with maximal password length with the combinator attack +- Fixed truncation of password after position 32 with the combinator attack +- Fixed DEScrypt cracking in BF mode in case the hashlist contains more than 16 times the same salt * changes v3.20 -> v3.30: