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