Fix m 60 a 0 by making modified variable non-const
[hashcat.git] / OpenCL / m02400_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
7
8 #define NEW_SIMD_CODE
9
10 #include "inc_vendor.cl"
11 #include "inc_hash_constants.h"
12 #include "inc_hash_functions.cl"
13 #include "inc_types.cl"
14 #include "inc_common.cl"
15 #include "inc_simd.cl"
16
17 __kernel void m02400_m04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
18 {
19   /**
20    * modifier
21    */
22
23   const u32 lid = get_local_id (0);
24
25   /**
26    * base
27    */
28
29   const u32 gid = get_global_id (0);
30
31   if (gid >= gid_max) return;
32
33   u32 pw_buf0[4];
34   u32 pw_buf1[4];
35
36   pw_buf0[0] = pws[gid].i[0];
37   pw_buf0[1] = pws[gid].i[1];
38   pw_buf0[2] = pws[gid].i[2];
39   pw_buf0[3] = pws[gid].i[3];
40   pw_buf1[0] = pws[gid].i[4];
41   pw_buf1[1] = pws[gid].i[5];
42   pw_buf1[2] = pws[gid].i[6];
43   pw_buf1[3] = pws[gid].i[7];
44
45   const u32 pw_l_len = pws[gid].pw_len;
46
47   /**
48    * loop
49    */
50
51   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
52   {
53     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
54
55     const u32x pw_len = pw_l_len + pw_r_len;
56
57     /**
58      * concat password candidate
59      */
60
61     u32x wordl0[4] = { 0 };
62     u32x wordl1[4] = { 0 };
63     u32x wordl2[4] = { 0 };
64     u32x wordl3[4] = { 0 };
65
66     wordl0[0] = pw_buf0[0];
67     wordl0[1] = pw_buf0[1];
68     wordl0[2] = pw_buf0[2];
69     wordl0[3] = pw_buf0[3];
70     wordl1[0] = pw_buf1[0];
71     wordl1[1] = pw_buf1[1];
72     wordl1[2] = pw_buf1[2];
73     wordl1[3] = pw_buf1[3];
74
75     u32x wordr0[4] = { 0 };
76     u32x wordr1[4] = { 0 };
77     u32x wordr2[4] = { 0 };
78     u32x wordr3[4] = { 0 };
79
80     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
81     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
82     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
83     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
84     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
85     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
86     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
87     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
88
89     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
90     {
91       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
92     }
93     else
94     {
95       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
96     }
97
98     u32x w0[4];
99     u32x w1[4];
100     u32x w2[4];
101     u32x w3[4];
102
103     w0[0] = wordl0[0] | wordr0[0];
104     w0[1] = wordl0[1] | wordr0[1];
105     w0[2] = wordl0[2] | wordr0[2];
106     w0[3] = wordl0[3] | wordr0[3];
107     w1[0] = wordl1[0] | wordr1[0];
108     w1[1] = wordl1[1] | wordr1[1];
109     w1[2] = wordl1[2] | wordr1[2];
110     w1[3] = wordl1[3] | wordr1[3];
111     w2[0] = wordl2[0] | wordr2[0];
112     w2[1] = wordl2[1] | wordr2[1];
113     w2[2] = wordl2[2] | wordr2[2];
114     w2[3] = wordl2[3] | wordr2[3];
115     w3[0] = wordl3[0] | wordr3[0];
116     w3[1] = wordl3[1] | wordr3[1];
117     w3[2] = wordl3[2] | wordr3[2];
118     w3[3] = wordl3[3] | wordr3[3];
119
120     /**
121      * md5
122      */
123
124     w1[0] = 0x80;
125     w1[1] = 0;
126     w1[2] = 0;
127     w1[3] = 0;
128     w2[0] = 0;
129     w2[1] = 0;
130     w2[2] = 0;
131     w2[3] = 0;
132     w3[0] = 0;
133     w3[1] = 0;
134     w3[2] = 16 * 8;
135     w3[3] = 0;
136
137     u32x a = MD5M_A;
138     u32x b = MD5M_B;
139     u32x c = MD5M_C;
140     u32x d = MD5M_D;
141
142     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
143     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
144     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
145     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
146     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
147     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
148     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
149     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
150     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
151     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
152     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
153     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
154     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
155     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
156     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
157     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
158
159     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
160     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
161     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
162     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
163     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
164     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
165     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
166     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
167     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
168     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
169     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
170     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
171     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
172     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
173     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
174     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
175
176     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
177     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
178     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
179     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
180     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
181     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
182     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
183     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
184     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
185     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
186     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
187     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
188     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
189     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
190     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
191     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
192
193     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
194     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
195     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
196     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
197     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
198     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
199     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
200     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
201     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
202     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
203     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
204     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
205     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
206     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
207     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
208     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
209
210     a &= 0x00ffffff;
211     d &= 0x00ffffff;
212     c &= 0x00ffffff;
213     b &= 0x00ffffff;
214
215     COMPARE_M_SIMD (a, d, c, b);
216   }
217 }
218
219 __kernel void m02400_m08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
220 {
221 }
222
223 __kernel void m02400_m16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
224 {
225 }
226
227 __kernel void m02400_s04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
228 {
229   /**
230    * modifier
231    */
232
233   const u32 lid = get_local_id (0);
234
235   /**
236    * base
237    */
238
239   const u32 gid = get_global_id (0);
240
241   if (gid >= gid_max) return;
242
243   u32 pw_buf0[4];
244   u32 pw_buf1[4];
245
246   pw_buf0[0] = pws[gid].i[0];
247   pw_buf0[1] = pws[gid].i[1];
248   pw_buf0[2] = pws[gid].i[2];
249   pw_buf0[3] = pws[gid].i[3];
250   pw_buf1[0] = pws[gid].i[4];
251   pw_buf1[1] = pws[gid].i[5];
252   pw_buf1[2] = pws[gid].i[6];
253   pw_buf1[3] = pws[gid].i[7];
254
255   const u32 pw_l_len = pws[gid].pw_len;
256
257   /**
258    * digest
259    */
260
261   const u32 search[4] =
262   {
263     digests_buf[digests_offset].digest_buf[DGST_R0],
264     digests_buf[digests_offset].digest_buf[DGST_R1],
265     digests_buf[digests_offset].digest_buf[DGST_R2],
266     digests_buf[digests_offset].digest_buf[DGST_R3]
267   };
268
269   /**
270    * loop
271    */
272
273   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
274   {
275     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
276
277     const u32x pw_len = pw_l_len + pw_r_len;
278
279     /**
280      * concat password candidate
281      */
282
283     u32x wordl0[4] = { 0 };
284     u32x wordl1[4] = { 0 };
285     u32x wordl2[4] = { 0 };
286     u32x wordl3[4] = { 0 };
287
288     wordl0[0] = pw_buf0[0];
289     wordl0[1] = pw_buf0[1];
290     wordl0[2] = pw_buf0[2];
291     wordl0[3] = pw_buf0[3];
292     wordl1[0] = pw_buf1[0];
293     wordl1[1] = pw_buf1[1];
294     wordl1[2] = pw_buf1[2];
295     wordl1[3] = pw_buf1[3];
296
297     u32x wordr0[4] = { 0 };
298     u32x wordr1[4] = { 0 };
299     u32x wordr2[4] = { 0 };
300     u32x wordr3[4] = { 0 };
301
302     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
303     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
304     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
305     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
306     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
307     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
308     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
309     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
310
311     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
312     {
313       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
314     }
315     else
316     {
317       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
318     }
319
320     u32x w0[4];
321     u32x w1[4];
322     u32x w2[4];
323     u32x w3[4];
324
325     w0[0] = wordl0[0] | wordr0[0];
326     w0[1] = wordl0[1] | wordr0[1];
327     w0[2] = wordl0[2] | wordr0[2];
328     w0[3] = wordl0[3] | wordr0[3];
329     w1[0] = wordl1[0] | wordr1[0];
330     w1[1] = wordl1[1] | wordr1[1];
331     w1[2] = wordl1[2] | wordr1[2];
332     w1[3] = wordl1[3] | wordr1[3];
333     w2[0] = wordl2[0] | wordr2[0];
334     w2[1] = wordl2[1] | wordr2[1];
335     w2[2] = wordl2[2] | wordr2[2];
336     w2[3] = wordl2[3] | wordr2[3];
337     w3[0] = wordl3[0] | wordr3[0];
338     w3[1] = wordl3[1] | wordr3[1];
339     w3[2] = wordl3[2] | wordr3[2];
340     w3[3] = wordl3[3] | wordr3[3];
341
342     /**
343      * md5
344      */
345
346     w1[0] = 0x80;
347     w1[1] = 0;
348     w1[2] = 0;
349     w1[3] = 0;
350     w2[0] = 0;
351     w2[1] = 0;
352     w2[2] = 0;
353     w2[3] = 0;
354     w3[0] = 0;
355     w3[1] = 0;
356     w3[2] = 16 * 8;
357     w3[3] = 0;
358
359     u32x a = MD5M_A;
360     u32x b = MD5M_B;
361     u32x c = MD5M_C;
362     u32x d = MD5M_D;
363
364     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
365     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
366     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
367     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
368     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
369     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
370     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
371     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
372     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
373     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
374     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
375     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
376     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
377     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
378     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
379     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
380
381     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
382     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
383     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
384     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
385     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
386     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
387     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
388     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
389     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
390     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
391     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
392     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
393     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
394     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
395     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
396     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
397
398     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
399     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
400     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
401     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
402     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
403     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
404     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
405     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
406     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
407     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
408     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
409     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
410     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
411     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
412     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
413     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
414
415     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
416     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
417     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
418     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
419     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
420     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
421     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
422     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
423     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
424     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
425     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
426     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
427     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
428
429     if (MATCHES_NONE_VS ((a & 0x00ffffff), search[0])) continue;
430
431     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
432     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
433     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
434
435     a &= 0x00ffffff;
436     d &= 0x00ffffff;
437     c &= 0x00ffffff;
438     b &= 0x00ffffff;
439
440     COMPARE_S_SIMD (a, d, c, b);
441   }
442 }
443
444 __kernel void m02400_s08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
445 {
446 }
447
448 __kernel void m02400_s16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
449 {
450 }