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