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