- Dropped all vector code since new GPU's are all scalar, makes the code much easier
[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 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #define DGST_R0 0
12 #define DGST_R1 3
13 #define DGST_R2 2
14 #define DGST_R3 1
15
16 #include "include/kernel_functions.c"
17 #include "types_ocl.c"
18 #include "common.c"
19
20 #define COMPARE_S "check_single_comp4.c"
21 #define COMPARE_M "check_multi_comp4.c"
22
23 __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)
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 (wordl0, wordl1, pw_l_len);
72
73     switch_buffer_by_offset (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++)
81   {
82     const u32 pw_r_len = combs_buf[il_pos].pw_len;
83
84     const u32 pw_len = pw_l_len + pw_r_len;
85
86     u32 wordr0[4];
87
88     wordr0[0] = combs_buf[il_pos].i[0];
89     wordr0[1] = combs_buf[il_pos].i[1];
90     wordr0[2] = combs_buf[il_pos].i[2];
91     wordr0[3] = combs_buf[il_pos].i[3];
92
93     u32 wordr1[4];
94
95     wordr1[0] = combs_buf[il_pos].i[4];
96     wordr1[1] = combs_buf[il_pos].i[5];
97     wordr1[2] = combs_buf[il_pos].i[6];
98     wordr1[3] = combs_buf[il_pos].i[7];
99
100     u32 wordr2[4];
101
102     wordr2[0] = 0;
103     wordr2[1] = 0;
104     wordr2[2] = 0;
105     wordr2[3] = 0;
106
107     u32 wordr3[4];
108
109     wordr3[0] = 0;
110     wordr3[1] = 0;
111     wordr3[2] = 0;
112     wordr3[3] = 0;
113
114     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
115     {
116       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
117     }
118
119     u32 w0[4];
120
121     w0[0] = wordl0[0] | wordr0[0];
122     w0[1] = wordl0[1] | wordr0[1];
123     w0[2] = wordl0[2] | wordr0[2];
124     w0[3] = wordl0[3] | wordr0[3];
125
126     u32 w1[4];
127
128     w1[0] = wordl1[0] | wordr1[0];
129     w1[1] = wordl1[1] | wordr1[1];
130     w1[2] = wordl1[2] | wordr1[2];
131     w1[3] = wordl1[3] | wordr1[3];
132
133     u32 w2[4];
134
135     w2[0] = wordl2[0] | wordr2[0];
136     w2[1] = wordl2[1] | wordr2[1];
137     w2[2] = wordl2[2] | wordr2[2];
138     w2[3] = wordl2[3] | wordr2[3];
139
140     u32 w3[4];
141
142     w3[0] = wordl3[0] | wordr3[0];
143     w3[1] = wordl3[1] | wordr3[1];
144     w3[2] = pw_len * 8;
145     w3[3] = 0;
146
147     u32 tmp2;
148
149     u32 a = MD5M_A;
150     u32 b = MD5M_B;
151     u32 c = MD5M_C;
152     u32 d = MD5M_D;
153
154     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
155     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
156     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
157     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
158     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
159     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
160     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
161     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
162     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
163     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
164     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
165     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
166     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
167     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
168     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
169     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
170
171     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
172     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
173     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
174     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
175     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
176     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
177     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
178     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
179     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
180     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
181     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
182     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
183     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
184     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
185     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
186     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
187
188     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
189     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
190     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
191     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
192     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
193     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
194     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
195     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
196     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
197     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
198     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
199     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
200     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
201     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
202     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
203     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
204
205     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
206     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
207     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
208     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
209     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
210     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
211     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
212     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
213     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
214     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
215     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
216     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
217     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
218     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
219     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
220     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
221
222     const u32 r0 = a;
223     const u32 r1 = d;
224     const u32 r2 = c;
225     const u32 r3 = b;
226
227     #include COMPARE_M
228   }
229 }
230
231 __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)
232 {
233 }
234
235 __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)
236 {
237 }
238
239 __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)
240 {
241   /**
242    * modifier
243    */
244
245   const u32 lid = get_local_id (0);
246
247   /**
248    * base
249    */
250
251   const u32 gid = get_global_id (0);
252
253   if (gid >= gid_max) return;
254
255   u32 wordl0[4];
256
257   wordl0[0] = pws[gid].i[ 0];
258   wordl0[1] = pws[gid].i[ 1];
259   wordl0[2] = pws[gid].i[ 2];
260   wordl0[3] = pws[gid].i[ 3];
261
262   u32 wordl1[4];
263
264   wordl1[0] = pws[gid].i[ 4];
265   wordl1[1] = pws[gid].i[ 5];
266   wordl1[2] = pws[gid].i[ 6];
267   wordl1[3] = pws[gid].i[ 7];
268
269   u32 wordl2[4];
270
271   wordl2[0] = 0;
272   wordl2[1] = 0;
273   wordl2[2] = 0;
274   wordl2[3] = 0;
275
276   u32 wordl3[4];
277
278   wordl3[0] = 0;
279   wordl3[1] = 0;
280   wordl3[2] = 0;
281   wordl3[3] = 0;
282
283   const u32 pw_l_len = pws[gid].pw_len;
284
285   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
286   {
287     append_0x80_2x4 (wordl0, wordl1, pw_l_len);
288
289     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
290   }
291
292   /**
293    * digest
294    */
295
296   const u32 search[4] =
297   {
298     digests_buf[digests_offset].digest_buf[DGST_R0],
299     digests_buf[digests_offset].digest_buf[DGST_R1],
300     digests_buf[digests_offset].digest_buf[DGST_R2],
301     digests_buf[digests_offset].digest_buf[DGST_R3]
302   };
303
304   /**
305    * loop
306    */
307
308   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
309   {
310     const u32 pw_r_len = combs_buf[il_pos].pw_len;
311
312     const u32 pw_len = pw_l_len + pw_r_len;
313
314     u32 wordr0[4];
315
316     wordr0[0] = combs_buf[il_pos].i[0];
317     wordr0[1] = combs_buf[il_pos].i[1];
318     wordr0[2] = combs_buf[il_pos].i[2];
319     wordr0[3] = combs_buf[il_pos].i[3];
320
321     u32 wordr1[4];
322
323     wordr1[0] = combs_buf[il_pos].i[4];
324     wordr1[1] = combs_buf[il_pos].i[5];
325     wordr1[2] = combs_buf[il_pos].i[6];
326     wordr1[3] = combs_buf[il_pos].i[7];
327
328     u32 wordr2[4];
329
330     wordr2[0] = 0;
331     wordr2[1] = 0;
332     wordr2[2] = 0;
333     wordr2[3] = 0;
334
335     u32 wordr3[4];
336
337     wordr3[0] = 0;
338     wordr3[1] = 0;
339     wordr3[2] = 0;
340     wordr3[3] = 0;
341
342     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
343     {
344       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
345     }
346
347     u32 w0[4];
348
349     w0[0] = wordl0[0] | wordr0[0];
350     w0[1] = wordl0[1] | wordr0[1];
351     w0[2] = wordl0[2] | wordr0[2];
352     w0[3] = wordl0[3] | wordr0[3];
353
354     u32 w1[4];
355
356     w1[0] = wordl1[0] | wordr1[0];
357     w1[1] = wordl1[1] | wordr1[1];
358     w1[2] = wordl1[2] | wordr1[2];
359     w1[3] = wordl1[3] | wordr1[3];
360
361     u32 w2[4];
362
363     w2[0] = wordl2[0] | wordr2[0];
364     w2[1] = wordl2[1] | wordr2[1];
365     w2[2] = wordl2[2] | wordr2[2];
366     w2[3] = wordl2[3] | wordr2[3];
367
368     u32 w3[4];
369
370     w3[0] = wordl3[0] | wordr3[0];
371     w3[1] = wordl3[1] | wordr3[1];
372     w3[2] = pw_len * 8;
373     w3[3] = 0;
374
375     u32 tmp2;
376
377     u32 a = MD5M_A;
378     u32 b = MD5M_B;
379     u32 c = MD5M_C;
380     u32 d = MD5M_D;
381
382     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
383     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
384     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
385     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
386     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
387     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
388     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
389     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
390     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
391     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
392     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
393     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
394     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
395     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
396     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
397     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
398
399     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
400     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
401     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
402     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
403     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
404     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
405     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
406     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
407     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
408     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
409     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
410     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
411     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
412     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
413     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
414     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
415
416     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
417     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
418     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
419     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
420     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
421     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
422     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
423     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
424     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
425     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
426     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
427     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
428     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
429     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
430     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
431     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
432
433     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
434     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
435     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
436     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
437     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
438     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
439     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
440     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
441     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
442     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
443     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
444     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
445     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
446
447     bool q_cond = allx (search[0] != a);
448
449     if (q_cond) continue;
450
451     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
452     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
453     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
454
455     const u32 r0 = a;
456     const u32 r1 = d;
457     const u32 r2 = c;
458     const u32 r3 = b;
459
460     #include COMPARE_S
461   }
462 }
463
464 __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)
465 {
466 }
467
468 __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)
469 {
470 }