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