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