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