Initial commit
[hashcat.git] / amd / m00000_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
7
8 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #ifdef  VLIW1
12 #define VECT_SIZE1
13 #endif
14
15 #ifdef  VLIW4
16 #define VECT_SIZE4
17 #endif
18
19 #ifdef  VLIW5
20 #define VECT_SIZE4
21 #endif
22
23 #define DGST_R0 0
24 #define DGST_R1 3
25 #define DGST_R2 2
26 #define DGST_R3 1
27
28 #include "include/kernel_functions.c"
29 #include "types_amd.c"
30 #include "common_amd.c"
31
32 #ifdef  VECT_SIZE1
33 #define VECT_COMPARE_S "check_single_vect1_comp4.c"
34 #define VECT_COMPARE_M "check_multi_vect1_comp4.c"
35 #endif
36
37 #ifdef  VECT_SIZE2
38 #define VECT_COMPARE_S "check_single_vect2_comp4.c"
39 #define VECT_COMPARE_M "check_multi_vect2_comp4.c"
40 #endif
41
42 #ifdef  VECT_SIZE4
43 #define VECT_COMPARE_S "check_single_vect4_comp4.c"
44 #define VECT_COMPARE_M "check_multi_vect4_comp4.c"
45 #endif
46
47 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_m04 (__global pw_t *pws, __global gpu_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)
48 {
49   /**
50    * modifier
51    */
52
53   const u32 lid = get_local_id (0);
54
55   /**
56    * base
57    */
58
59   const u32 gid = get_global_id (0);
60
61   if (gid >= gid_max) return;
62
63   u32x wordl0[4];
64
65   wordl0[0] = pws[gid].i[ 0];
66   wordl0[1] = pws[gid].i[ 1];
67   wordl0[2] = pws[gid].i[ 2];
68   wordl0[3] = pws[gid].i[ 3];
69
70   u32x wordl1[4];
71
72   wordl1[0] = pws[gid].i[ 4];
73   wordl1[1] = pws[gid].i[ 5];
74   wordl1[2] = pws[gid].i[ 6];
75   wordl1[3] = pws[gid].i[ 7];
76
77   u32x wordl2[4];
78
79   wordl2[0] = 0;
80   wordl2[1] = 0;
81   wordl2[2] = 0;
82   wordl2[3] = 0;
83
84   u32x wordl3[4];
85
86   wordl3[0] = 0;
87   wordl3[1] = 0;
88   wordl3[2] = 0;
89   wordl3[3] = 0;
90
91   const u32 pw_l_len = pws[gid].pw_len;
92
93   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
94   {
95     append_0x80_2 (wordl0, wordl1, pw_l_len);
96
97     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
98   }
99
100   /**
101    * loop
102    */
103
104   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
105   {
106     const u32 pw_r_len = combs_buf[il_pos].pw_len;
107
108     const u32 pw_len = pw_l_len + pw_r_len;
109
110     u32 wordr0[4];
111
112     wordr0[0] = combs_buf[il_pos].i[0];
113     wordr0[1] = combs_buf[il_pos].i[1];
114     wordr0[2] = combs_buf[il_pos].i[2];
115     wordr0[3] = combs_buf[il_pos].i[3];
116
117     u32 wordr1[4];
118
119     wordr1[0] = combs_buf[il_pos].i[4];
120     wordr1[1] = combs_buf[il_pos].i[5];
121     wordr1[2] = combs_buf[il_pos].i[6];
122     wordr1[3] = combs_buf[il_pos].i[7];
123
124     u32 wordr2[4];
125
126     wordr2[0] = 0;
127     wordr2[1] = 0;
128     wordr2[2] = 0;
129     wordr2[3] = 0;
130
131     u32 wordr3[4];
132
133     wordr3[0] = 0;
134     wordr3[1] = 0;
135     wordr3[2] = 0;
136     wordr3[3] = 0;
137
138     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
139     {
140       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
141     }
142
143     u32x w0[4];
144
145     w0[0] = wordl0[0] | wordr0[0];
146     w0[1] = wordl0[1] | wordr0[1];
147     w0[2] = wordl0[2] | wordr0[2];
148     w0[3] = wordl0[3] | wordr0[3];
149
150     u32x w1[4];
151
152     w1[0] = wordl1[0] | wordr1[0];
153     w1[1] = wordl1[1] | wordr1[1];
154     w1[2] = wordl1[2] | wordr1[2];
155     w1[3] = wordl1[3] | wordr1[3];
156
157     u32x w2[4];
158
159     w2[0] = wordl2[0] | wordr2[0];
160     w2[1] = wordl2[1] | wordr2[1];
161     w2[2] = wordl2[2] | wordr2[2];
162     w2[3] = wordl2[3] | wordr2[3];
163
164     u32x w3[4];
165
166     w3[0] = wordl3[0] | wordr3[0];
167     w3[1] = wordl3[1] | wordr3[1];
168     w3[2] = pw_len * 8;
169     w3[3] = 0;
170
171     u32x tmp2;
172
173     u32x a = MD5M_A;
174     u32x b = MD5M_B;
175     u32x c = MD5M_C;
176     u32x d = MD5M_D;
177
178     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
179     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
180     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
181     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
182     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
183     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
184     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
185     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
186     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
187     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
188     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
189     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
190     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
191     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
192     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
193     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
194
195     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
196     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
197     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
198     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
199     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
200     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
201     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
202     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
203     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
204     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
205     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
206     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
207     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
208     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
209     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
210     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
211
212     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
213     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
214     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
215     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
216     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
217     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
218     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
219     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
220     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
221     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
222     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
223     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
224     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
225     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
226     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
227     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
228
229     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
230     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
231     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
232     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
233     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
234     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
235     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
236     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
237     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
238     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
239     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
240     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
241     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
242     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
243     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
244     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
245
246
247     const u32x r0 = a;
248     const u32x r1 = d;
249     const u32x r2 = c;
250     const u32x r3 = b;
251
252     #include VECT_COMPARE_M
253   }
254 }
255
256 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_m08 (__global pw_t *pws, __global gpu_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)
257 {
258 }
259
260 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_m16 (__global pw_t *pws, __global gpu_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)
261 {
262 }
263
264 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_s04 (__global pw_t *pws, __global gpu_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)
265 {
266   /**
267    * modifier
268    */
269
270   const u32 lid = get_local_id (0);
271
272   /**
273    * base
274    */
275
276   const u32 gid = get_global_id (0);
277
278   if (gid >= gid_max) return;
279
280   u32x wordl0[4];
281
282   wordl0[0] = pws[gid].i[ 0];
283   wordl0[1] = pws[gid].i[ 1];
284   wordl0[2] = pws[gid].i[ 2];
285   wordl0[3] = pws[gid].i[ 3];
286
287   u32x wordl1[4];
288
289   wordl1[0] = pws[gid].i[ 4];
290   wordl1[1] = pws[gid].i[ 5];
291   wordl1[2] = pws[gid].i[ 6];
292   wordl1[3] = pws[gid].i[ 7];
293
294   u32x wordl2[4];
295
296   wordl2[0] = 0;
297   wordl2[1] = 0;
298   wordl2[2] = 0;
299   wordl2[3] = 0;
300
301   u32x wordl3[4];
302
303   wordl3[0] = 0;
304   wordl3[1] = 0;
305   wordl3[2] = 0;
306   wordl3[3] = 0;
307
308   const u32 pw_l_len = pws[gid].pw_len;
309
310   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
311   {
312     append_0x80_2 (wordl0, wordl1, pw_l_len);
313
314     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
315   }
316
317   /**
318    * digest
319    */
320
321   const u32 search[4] =
322   {
323     digests_buf[digests_offset].digest_buf[DGST_R0],
324     digests_buf[digests_offset].digest_buf[DGST_R1],
325     digests_buf[digests_offset].digest_buf[DGST_R2],
326     digests_buf[digests_offset].digest_buf[DGST_R3]
327   };
328
329   /**
330    * loop
331    */
332
333   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
334   {
335     const u32 pw_r_len = combs_buf[il_pos].pw_len;
336
337     const u32 pw_len = pw_l_len + pw_r_len;
338
339     u32 wordr0[4];
340
341     wordr0[0] = combs_buf[il_pos].i[0];
342     wordr0[1] = combs_buf[il_pos].i[1];
343     wordr0[2] = combs_buf[il_pos].i[2];
344     wordr0[3] = combs_buf[il_pos].i[3];
345
346     u32 wordr1[4];
347
348     wordr1[0] = combs_buf[il_pos].i[4];
349     wordr1[1] = combs_buf[il_pos].i[5];
350     wordr1[2] = combs_buf[il_pos].i[6];
351     wordr1[3] = combs_buf[il_pos].i[7];
352
353     u32 wordr2[4];
354
355     wordr2[0] = 0;
356     wordr2[1] = 0;
357     wordr2[2] = 0;
358     wordr2[3] = 0;
359
360     u32 wordr3[4];
361
362     wordr3[0] = 0;
363     wordr3[1] = 0;
364     wordr3[2] = 0;
365     wordr3[3] = 0;
366
367     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
368     {
369       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
370     }
371
372     u32x w0[4];
373
374     w0[0] = wordl0[0] | wordr0[0];
375     w0[1] = wordl0[1] | wordr0[1];
376     w0[2] = wordl0[2] | wordr0[2];
377     w0[3] = wordl0[3] | wordr0[3];
378
379     u32x w1[4];
380
381     w1[0] = wordl1[0] | wordr1[0];
382     w1[1] = wordl1[1] | wordr1[1];
383     w1[2] = wordl1[2] | wordr1[2];
384     w1[3] = wordl1[3] | wordr1[3];
385
386     u32x w2[4];
387
388     w2[0] = wordl2[0] | wordr2[0];
389     w2[1] = wordl2[1] | wordr2[1];
390     w2[2] = wordl2[2] | wordr2[2];
391     w2[3] = wordl2[3] | wordr2[3];
392
393     u32x w3[4];
394
395     w3[0] = wordl3[0] | wordr3[0];
396     w3[1] = wordl3[1] | wordr3[1];
397     w3[2] = pw_len * 8;
398     w3[3] = 0;
399
400     u32x tmp2;
401
402     u32x a = MD5M_A;
403     u32x b = MD5M_B;
404     u32x c = MD5M_C;
405     u32x d = MD5M_D;
406
407     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
408     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
409     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
410     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
411     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
412     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
413     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
414     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
415     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
416     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
417     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
418     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
419     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
420     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
421     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
422     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
423
424     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
425     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
426     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
427     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
428     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
429     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
430     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
431     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
432     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
433     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
434     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
435     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
436     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
437     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
438     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
439     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
440
441     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
442     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
443     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
444     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
445     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
446     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
447     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
448     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
449     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
450     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
451     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
452     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
453     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
454     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
455     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
456     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
457
458     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
459     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
460     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
461     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
462     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
463     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
464     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
465     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
466     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
467     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
468     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
469     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
470     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
471
472     bool q_cond = allx (search[0] != a);
473
474     if (q_cond) continue;
475
476     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
477     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
478     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
479
480
481     const u32x r0 = a;
482     const u32x r1 = d;
483     const u32x r2 = c;
484     const u32x r3 = b;
485
486     #include VECT_COMPARE_S
487   }
488 }
489
490 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_s08 (__global pw_t *pws, __global gpu_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)
491 {
492 }
493
494 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_s16 (__global pw_t *pws, __global gpu_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)
495 {
496 }