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