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