Merge branch 'master' into GetRidOfCUDA
[hashcat.git] / OpenCL / m02410_a1.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 #define DGST_R0 0
12 #define DGST_R1 3
13 #define DGST_R2 2
14 #define DGST_R3 1
15
16 #include "include/kernel_functions.c"
17 #include "types_ocl.c"
18 #include "common.c"
19
20 #define COMPARE_S "check_single_comp4.c"
21 #define COMPARE_M "check_multi_comp4.c"
22
23 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
24 {
25   /**
26    * modifier
27    */
28
29   const u32 lid = get_local_id (0);
30
31   /**
32    * base
33    */
34
35   const u32 gid = get_global_id (0);
36
37   if (gid >= gid_max) return;
38
39   u32 wordl0[4];
40
41   wordl0[0] = pws[gid].i[ 0];
42   wordl0[1] = pws[gid].i[ 1];
43   wordl0[2] = pws[gid].i[ 2];
44   wordl0[3] = pws[gid].i[ 3];
45
46   u32 wordl1[4];
47
48   wordl1[0] = pws[gid].i[ 4];
49   wordl1[1] = pws[gid].i[ 5];
50   wordl1[2] = pws[gid].i[ 6];
51   wordl1[3] = pws[gid].i[ 7];
52
53   u32 wordl2[4];
54
55   wordl2[0] = 0;
56   wordl2[1] = 0;
57   wordl2[2] = 0;
58   wordl2[3] = 0;
59
60   u32 wordl3[4];
61
62   wordl3[0] = 0;
63   wordl3[1] = 0;
64   wordl3[2] = 0;
65   wordl3[3] = 0;
66
67   const u32 pw_l_len = pws[gid].pw_len;
68
69   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
70   {
71     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
72   }
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 < combs_cnt; il_pos++)
92   {
93     const u32 pw_r_len = combs_buf[il_pos].pw_len;
94
95     const u32 pw_len = pw_l_len + pw_r_len;
96
97     u32 wordr0[4];
98
99     wordr0[0] = combs_buf[il_pos].i[0];
100     wordr0[1] = combs_buf[il_pos].i[1];
101     wordr0[2] = combs_buf[il_pos].i[2];
102     wordr0[3] = combs_buf[il_pos].i[3];
103
104     u32 wordr1[4];
105
106     wordr1[0] = combs_buf[il_pos].i[4];
107     wordr1[1] = combs_buf[il_pos].i[5];
108     wordr1[2] = combs_buf[il_pos].i[6];
109     wordr1[3] = combs_buf[il_pos].i[7];
110
111     u32 wordr2[4];
112
113     wordr2[0] = 0;
114     wordr2[1] = 0;
115     wordr2[2] = 0;
116     wordr2[3] = 0;
117
118     u32 wordr3[4];
119
120     wordr3[0] = 0;
121     wordr3[1] = 0;
122     wordr3[2] = 0;
123     wordr3[3] = 0;
124
125     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
126     {
127       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
128     }
129
130     /**
131      * append salt
132      */
133
134     u32 s0[4];
135
136     s0[0] = salt_buf0[0];
137     s0[1] = salt_buf0[1];
138     s0[2] = salt_buf0[2];
139     s0[3] = salt_buf0[3];
140
141     u32 s1[4];
142
143     s1[0] = 0;
144     s1[1] = 0;
145     s1[2] = 0;
146     s1[3] = 0;
147
148     u32 s2[4];
149
150     s2[0] = 0;
151     s2[1] = 0;
152     s2[2] = 0;
153     s2[3] = 0;
154
155     u32 s3[4];
156
157     s3[0] = 0;
158     s3[1] = 0;
159     s3[2] = 0;
160     s3[3] = 0;
161
162     switch_buffer_by_offset (s0, s1, s2, s3, pw_len);
163
164     const u32 pw_salt_len = pw_len + salt_len;
165
166     u32 w0[4];
167
168     w0[0] = wordl0[0] | wordr0[0] | s0[0];
169     w0[1] = wordl0[1] | wordr0[1] | s0[1];
170     w0[2] = wordl0[2] | wordr0[2] | s0[2];
171     w0[3] = wordl0[3] | wordr0[3] | s0[3];
172
173     u32 w1[4];
174
175     w1[0] = wordl1[0] | wordr1[0];
176     w1[1] = wordl1[1] | wordr1[1];
177     w1[2] = wordl1[2] | wordr1[2];
178     w1[3] = wordl1[3] | wordr1[3];
179
180     u32 w2[4];
181
182     w2[0] = wordl2[0] | wordr2[0];
183     w2[1] = wordl2[1] | wordr2[1];
184     w2[2] = wordl2[2] | wordr2[2];
185     w2[3] = wordl2[3] | wordr2[3];
186
187     u32 w3[4];
188
189     w3[0] = wordl3[0] | wordr3[0];
190     w3[1] = wordl3[1] | wordr3[1];
191     w3[2] = 0;
192     w3[3] = 0;
193
194     truncate_block (w0, pw_salt_len);
195
196     w1[0] = 0x80;
197     w3[2] = 16 * 8;
198
199     u32 tmp2;
200
201     u32 a = MD5M_A;
202     u32 b = MD5M_B;
203     u32 c = MD5M_C;
204     u32 d = MD5M_D;
205
206     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
207     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
208     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
209     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
210     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
211     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
212     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
213     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
214     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
215     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
216     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
217     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
218     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
219     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
220     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
221     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
222
223     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
224     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
225     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
226     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
227     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
228     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
229     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
230     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
231     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
232     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
233     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
234     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
235     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
236     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
237     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
238     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
239
240     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
241     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
242     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
243     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
244     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
245     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
246     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
247     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
248     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
249     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
250     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
251     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
252     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
253     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
254     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
255     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
256
257     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
258     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
259     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
260     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
261     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
262     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
263     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
264     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
265     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
266     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
267     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
268     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
269     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
270     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
271     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
272     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
273
274     a &= 0x00ffffff;
275     d &= 0x00ffffff;
276     c &= 0x00ffffff;
277     b &= 0x00ffffff;
278
279     const u32 r0 = a;
280     const u32 r1 = d;
281     const u32 r2 = c;
282     const u32 r3 = b;
283
284     #include COMPARE_M
285   }
286 }
287
288 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
289 {
290 }
291
292 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
293 {
294 }
295
296 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
297 {
298   /**
299    * modifier
300    */
301
302   const u32 lid = get_local_id (0);
303
304   /**
305    * base
306    */
307
308   const u32 gid = get_global_id (0);
309
310   if (gid >= gid_max) return;
311
312   u32 wordl0[4];
313
314   wordl0[0] = pws[gid].i[ 0];
315   wordl0[1] = pws[gid].i[ 1];
316   wordl0[2] = pws[gid].i[ 2];
317   wordl0[3] = pws[gid].i[ 3];
318
319   u32 wordl1[4];
320
321   wordl1[0] = pws[gid].i[ 4];
322   wordl1[1] = pws[gid].i[ 5];
323   wordl1[2] = pws[gid].i[ 6];
324   wordl1[3] = pws[gid].i[ 7];
325
326   u32 wordl2[4];
327
328   wordl2[0] = 0;
329   wordl2[1] = 0;
330   wordl2[2] = 0;
331   wordl2[3] = 0;
332
333   u32 wordl3[4];
334
335   wordl3[0] = 0;
336   wordl3[1] = 0;
337   wordl3[2] = 0;
338   wordl3[3] = 0;
339
340   const u32 pw_l_len = pws[gid].pw_len;
341
342   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
343   {
344     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
345   }
346
347   /**
348    * salt
349    */
350
351   u32 salt_buf0[4];
352
353   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
354   salt_buf0[1] = 0;
355   salt_buf0[2] = 0;
356   salt_buf0[3] = 0;
357
358   const u32 salt_len = (salt_bufs[salt_pos].salt_len < 4) ? salt_bufs[salt_pos].salt_len : 4;
359
360   /**
361    * digest
362    */
363
364   const u32 search[4] =
365   {
366     digests_buf[digests_offset].digest_buf[DGST_R0],
367     digests_buf[digests_offset].digest_buf[DGST_R1],
368     digests_buf[digests_offset].digest_buf[DGST_R2],
369     digests_buf[digests_offset].digest_buf[DGST_R3]
370   };
371
372   /**
373    * loop
374    */
375
376   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
377   {
378     const u32 pw_r_len = combs_buf[il_pos].pw_len;
379
380     const u32 pw_len = pw_l_len + pw_r_len;
381
382     u32 wordr0[4];
383
384     wordr0[0] = combs_buf[il_pos].i[0];
385     wordr0[1] = combs_buf[il_pos].i[1];
386     wordr0[2] = combs_buf[il_pos].i[2];
387     wordr0[3] = combs_buf[il_pos].i[3];
388
389     u32 wordr1[4];
390
391     wordr1[0] = combs_buf[il_pos].i[4];
392     wordr1[1] = combs_buf[il_pos].i[5];
393     wordr1[2] = combs_buf[il_pos].i[6];
394     wordr1[3] = combs_buf[il_pos].i[7];
395
396     u32 wordr2[4];
397
398     wordr2[0] = 0;
399     wordr2[1] = 0;
400     wordr2[2] = 0;
401     wordr2[3] = 0;
402
403     u32 wordr3[4];
404
405     wordr3[0] = 0;
406     wordr3[1] = 0;
407     wordr3[2] = 0;
408     wordr3[3] = 0;
409
410     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
411     {
412       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
413     }
414
415     /**
416      * append salt
417      */
418
419     u32 s0[4];
420
421     s0[0] = salt_buf0[0];
422     s0[1] = salt_buf0[1];
423     s0[2] = salt_buf0[2];
424     s0[3] = salt_buf0[3];
425
426     u32 s1[4];
427
428     s1[0] = 0;
429     s1[1] = 0;
430     s1[2] = 0;
431     s1[3] = 0;
432
433     u32 s2[4];
434
435     s2[0] = 0;
436     s2[1] = 0;
437     s2[2] = 0;
438     s2[3] = 0;
439
440     u32 s3[4];
441
442     s3[0] = 0;
443     s3[1] = 0;
444     s3[2] = 0;
445     s3[3] = 0;
446
447     switch_buffer_by_offset (s0, s1, s2, s3, pw_len);
448
449     const u32 pw_salt_len = pw_len + salt_len;
450
451     u32 w0[4];
452
453     w0[0] = wordl0[0] | wordr0[0] | s0[0];
454     w0[1] = wordl0[1] | wordr0[1] | s0[1];
455     w0[2] = wordl0[2] | wordr0[2] | s0[2];
456     w0[3] = wordl0[3] | wordr0[3] | s0[3];
457
458     u32 w1[4];
459
460     w1[0] = wordl1[0] | wordr1[0];
461     w1[1] = wordl1[1] | wordr1[1];
462     w1[2] = wordl1[2] | wordr1[2];
463     w1[3] = wordl1[3] | wordr1[3];
464
465     u32 w2[4];
466
467     w2[0] = wordl2[0] | wordr2[0];
468     w2[1] = wordl2[1] | wordr2[1];
469     w2[2] = wordl2[2] | wordr2[2];
470     w2[3] = wordl2[3] | wordr2[3];
471
472     u32 w3[4];
473
474     w3[0] = wordl3[0] | wordr3[0];
475     w3[1] = wordl3[1] | wordr3[1];
476     w3[2] = 0;
477     w3[3] = 0;
478
479     truncate_block (w0, pw_salt_len);
480
481     w1[0] = 0x80;
482     w3[2] = 16 * 8;
483
484     u32 tmp2;
485
486     u32 a = MD5M_A;
487     u32 b = MD5M_B;
488     u32 c = MD5M_C;
489     u32 d = MD5M_D;
490
491     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
492     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
493     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
494     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
495     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
496     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
497     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
498     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
499     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
500     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
501     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
502     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
503     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
504     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
505     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
506     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
507
508     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
509     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
510     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
511     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
512     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
513     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
514     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
515     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
516     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
517     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
518     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
519     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
520     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
521     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
522     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
523     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
524
525     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
526     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
527     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
528     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
529     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
530     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
531     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
532     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
533     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
534     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
535     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
536     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
537     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
538     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
539     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
540     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
541
542     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
543     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
544     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
545     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
546     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
547     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
548     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
549     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
550     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
551     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
552     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
553     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
554     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
555
556     bool q_cond = allx ((a & 0x00ffffff) != search[0]);
557
558     if (q_cond) continue;
559
560     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
561     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
562     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
563
564     a &= 0x00ffffff;
565     d &= 0x00ffffff;
566     c &= 0x00ffffff;
567     b &= 0x00ffffff;
568
569     const u32 r0 = a;
570     const u32 r1 = d;
571     const u32 r2 = c;
572     const u32 r3 = b;
573
574     #include COMPARE_S
575   }
576 }
577
578 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
579 {
580 }
581
582 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
583 {
584 }