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