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