Merge branch 'master' of https://github.com/hashcat/oclHashcat
[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 #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
20 #define COMPARE_S "OpenCL/check_single_comp4.c"
21 #define COMPARE_M "OpenCL/check_multi_comp4.c"
22
23 __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_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_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
72   }
73
74   /**
75    * loop
76    */
77
78   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
79   {
80     const u32 pw_r_len = combs_buf[il_pos].pw_len;
81
82     const u32 pw_len = pw_l_len + pw_r_len;
83
84     u32 wordr0[4];
85
86     wordr0[0] = combs_buf[il_pos].i[0];
87     wordr0[1] = combs_buf[il_pos].i[1];
88     wordr0[2] = combs_buf[il_pos].i[2];
89     wordr0[3] = combs_buf[il_pos].i[3];
90
91     u32 wordr1[4];
92
93     wordr1[0] = combs_buf[il_pos].i[4];
94     wordr1[1] = combs_buf[il_pos].i[5];
95     wordr1[2] = combs_buf[il_pos].i[6];
96     wordr1[3] = combs_buf[il_pos].i[7];
97
98     u32 wordr2[4];
99
100     wordr2[0] = 0;
101     wordr2[1] = 0;
102     wordr2[2] = 0;
103     wordr2[3] = 0;
104
105     u32 wordr3[4];
106
107     wordr3[0] = 0;
108     wordr3[1] = 0;
109     wordr3[2] = 0;
110     wordr3[3] = 0;
111
112     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
113     {
114       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
115     }
116
117     u32 w0[4];
118
119     w0[0] = wordl0[0] | wordr0[0];
120     w0[1] = wordl0[1] | wordr0[1];
121     w0[2] = wordl0[2] | wordr0[2];
122     w0[3] = wordl0[3] | wordr0[3];
123
124     u32 w1[4];
125
126     w1[0] = wordl1[0] | wordr1[0];
127     w1[1] = wordl1[1] | wordr1[1];
128     w1[2] = wordl1[2] | wordr1[2];
129     w1[3] = wordl1[3] | wordr1[3];
130
131     u32 w2[4];
132
133     w2[0] = wordl2[0] | wordr2[0];
134     w2[1] = wordl2[1] | wordr2[1];
135     w2[2] = wordl2[2] | wordr2[2];
136     w2[3] = wordl2[3] | wordr2[3];
137
138     u32 w3[4];
139
140     w3[0] = wordl3[0] | wordr3[0];
141     w3[1] = wordl3[1] | wordr3[1];
142     w3[2] = 0;
143     w3[3] = 0;
144
145     truncate_block (w0, pw_len);
146
147     w1[0] = 0x80;
148     w3[2] = 16 * 8;
149
150     u32 a = MD5M_A;
151     u32 b = MD5M_B;
152     u32 c = MD5M_C;
153     u32 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     const u32 r0 = a;
229     const u32 r1 = d;
230     const u32 r2 = c;
231     const u32 r3 = b;
232
233     #include COMPARE_M
234   }
235 }
236
237 __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_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)
238 {
239 }
240
241 __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_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)
242 {
243 }
244
245 __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_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)
246 {
247   /**
248    * modifier
249    */
250
251   const u32 lid = get_local_id (0);
252
253   /**
254    * base
255    */
256
257   const u32 gid = get_global_id (0);
258
259   if (gid >= gid_max) return;
260
261   u32 wordl0[4];
262
263   wordl0[0] = pws[gid].i[ 0];
264   wordl0[1] = pws[gid].i[ 1];
265   wordl0[2] = pws[gid].i[ 2];
266   wordl0[3] = pws[gid].i[ 3];
267
268   u32 wordl1[4];
269
270   wordl1[0] = pws[gid].i[ 4];
271   wordl1[1] = pws[gid].i[ 5];
272   wordl1[2] = pws[gid].i[ 6];
273   wordl1[3] = pws[gid].i[ 7];
274
275   u32 wordl2[4];
276
277   wordl2[0] = 0;
278   wordl2[1] = 0;
279   wordl2[2] = 0;
280   wordl2[3] = 0;
281
282   u32 wordl3[4];
283
284   wordl3[0] = 0;
285   wordl3[1] = 0;
286   wordl3[2] = 0;
287   wordl3[3] = 0;
288
289   const u32 pw_l_len = pws[gid].pw_len;
290
291   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
292   {
293     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
294   }
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 < combs_cnt; il_pos++)
313   {
314     const u32 pw_r_len = combs_buf[il_pos].pw_len;
315
316     const u32 pw_len = pw_l_len + pw_r_len;
317
318     u32 wordr0[4];
319
320     wordr0[0] = combs_buf[il_pos].i[0];
321     wordr0[1] = combs_buf[il_pos].i[1];
322     wordr0[2] = combs_buf[il_pos].i[2];
323     wordr0[3] = combs_buf[il_pos].i[3];
324
325     u32 wordr1[4];
326
327     wordr1[0] = combs_buf[il_pos].i[4];
328     wordr1[1] = combs_buf[il_pos].i[5];
329     wordr1[2] = combs_buf[il_pos].i[6];
330     wordr1[3] = combs_buf[il_pos].i[7];
331
332     u32 wordr2[4];
333
334     wordr2[0] = 0;
335     wordr2[1] = 0;
336     wordr2[2] = 0;
337     wordr2[3] = 0;
338
339     u32 wordr3[4];
340
341     wordr3[0] = 0;
342     wordr3[1] = 0;
343     wordr3[2] = 0;
344     wordr3[3] = 0;
345
346     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
347     {
348       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
349     }
350
351     u32 w0[4];
352
353     w0[0] = wordl0[0] | wordr0[0];
354     w0[1] = wordl0[1] | wordr0[1];
355     w0[2] = wordl0[2] | wordr0[2];
356     w0[3] = wordl0[3] | wordr0[3];
357
358     u32 w1[4];
359
360     w1[0] = wordl1[0] | wordr1[0];
361     w1[1] = wordl1[1] | wordr1[1];
362     w1[2] = wordl1[2] | wordr1[2];
363     w1[3] = wordl1[3] | wordr1[3];
364
365     u32 w2[4];
366
367     w2[0] = wordl2[0] | wordr2[0];
368     w2[1] = wordl2[1] | wordr2[1];
369     w2[2] = wordl2[2] | wordr2[2];
370     w2[3] = wordl2[3] | wordr2[3];
371
372     u32 w3[4];
373
374     w3[0] = wordl3[0] | wordr3[0];
375     w3[1] = wordl3[1] | wordr3[1];
376     w3[2] = 0;
377     w3[3] = 0;
378
379     truncate_block (w0, pw_len);
380
381     w1[0] = 0x80;
382     w3[2] = 16 * 8;
383
384     u32 a = MD5M_A;
385     u32 b = MD5M_B;
386     u32 c = MD5M_C;
387     u32 d = MD5M_D;
388
389     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
390     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
391     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
392     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
393     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
394     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
395     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
396     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
397     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
398     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
399     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
400     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
401     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
402     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
403     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
404     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
405
406     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
407     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
408     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
409     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
410     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
411     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
412     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
413     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
414     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
415     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
416     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
417     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
418     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
419     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
420     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
421     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
422
423     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
424     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
425     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
426     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
427     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
428     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
429     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
430     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
431     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
432     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
433     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
434     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
435     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
436     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
437     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
438     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
439
440     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
441     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
442     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
443     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
444     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
445     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
446     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
447     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
448     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
449     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
450     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
451     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
452     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
453
454     bool q_cond = allx ((a & 0x00ffffff) != search[0]);
455
456     if (q_cond) continue;
457
458     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
459     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
460     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
461
462     a &= 0x00ffffff;
463     d &= 0x00ffffff;
464     c &= 0x00ffffff;
465     b &= 0x00ffffff;
466
467     const u32 r0 = a;
468     const u32 r1 = d;
469     const u32 r2 = c;
470     const u32 r3 = b;
471
472     #include COMPARE_S
473   }
474 }
475
476 __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_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)
477 {
478 }
479
480 __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_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)
481 {
482 }