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