Fix append_* function calls
[hashcat.git] / OpenCL / m05100_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5H_
7
8 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #define DGST_R0 0
12 #define DGST_R1 1
13 #define DGST_R2 2
14 #define DGST_R3 3
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))) m05100_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 a = MD5M_A;
148     u32 b = MD5M_B;
149     u32 c = MD5M_C;
150     u32 d = MD5M_D;
151
152     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
153     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
154     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
155     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
156     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
157     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
158     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
159     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
160     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
161     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
162     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
163     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
164     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
165     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
166     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
167     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
168
169     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
170     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
171     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
172     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
173     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
174     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
175     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
176     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
177     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
178     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
179     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
180     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
181     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
182     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
183     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
184     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
185
186     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
187     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
188     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
189     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
190     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
191     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
192     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
193     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
194     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
195     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
196     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
197     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
198     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
199     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
200     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
201     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
202
203     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
204     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
205     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
206     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
207     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
208     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
209     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
210     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
211     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
212     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
213     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
214     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
215     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
216     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
217     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
218     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
219
220     a += MD5M_A;
221     b += MD5M_B;
222     c += MD5M_C;
223     d += MD5M_D;
224
225     {
226       const u32 r0 = a;
227       const u32 r1 = b;
228       const u32 r2 = 0;
229       const u32 r3 = 0;
230
231       #include COMPARE_M
232     }
233
234     {
235       const u32 r0 = b;
236       const u32 r1 = c;
237       const u32 r2 = 0;
238       const u32 r3 = 0;
239
240       #include COMPARE_M
241     }
242
243     {
244       const u32 r0 = c;
245       const u32 r1 = d;
246       const u32 r2 = 0;
247       const u32 r3 = 0;
248
249       #include COMPARE_M
250     }
251   }
252 }
253
254 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
255 {
256 }
257
258 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
259 {
260 }
261
262 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
263 {
264   /**
265    * modifier
266    */
267
268   const u32 lid = get_local_id (0);
269
270   /**
271    * base
272    */
273
274   const u32 gid = get_global_id (0);
275
276   if (gid >= gid_max) return;
277
278   u32 wordl0[4];
279
280   wordl0[0] = pws[gid].i[ 0];
281   wordl0[1] = pws[gid].i[ 1];
282   wordl0[2] = pws[gid].i[ 2];
283   wordl0[3] = pws[gid].i[ 3];
284
285   u32 wordl1[4];
286
287   wordl1[0] = pws[gid].i[ 4];
288   wordl1[1] = pws[gid].i[ 5];
289   wordl1[2] = pws[gid].i[ 6];
290   wordl1[3] = pws[gid].i[ 7];
291
292   u32 wordl2[4];
293
294   wordl2[0] = 0;
295   wordl2[1] = 0;
296   wordl2[2] = 0;
297   wordl2[3] = 0;
298
299   u32 wordl3[4];
300
301   wordl3[0] = 0;
302   wordl3[1] = 0;
303   wordl3[2] = 0;
304   wordl3[3] = 0;
305
306   /**
307    * digest
308    */
309
310   const u32 search[4] =
311   {
312     digests_buf[digests_offset].digest_buf[DGST_R0],
313     digests_buf[digests_offset].digest_buf[DGST_R1],
314     digests_buf[digests_offset].digest_buf[DGST_R2],
315     digests_buf[digests_offset].digest_buf[DGST_R3]
316   };
317
318   const u32 pw_l_len = pws[gid].pw_len;
319
320   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
321   {
322     append_0x80_2x4 (wordl0, wordl1, pw_l_len);
323
324     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
325   }
326
327   /**
328    * loop
329    */
330
331   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
332   {
333     const u32 pw_r_len = combs_buf[il_pos].pw_len;
334
335     const u32 pw_len = pw_l_len + pw_r_len;
336
337     u32 wordr0[4];
338
339     wordr0[0] = combs_buf[il_pos].i[0];
340     wordr0[1] = combs_buf[il_pos].i[1];
341     wordr0[2] = combs_buf[il_pos].i[2];
342     wordr0[3] = combs_buf[il_pos].i[3];
343
344     u32 wordr1[4];
345
346     wordr1[0] = combs_buf[il_pos].i[4];
347     wordr1[1] = combs_buf[il_pos].i[5];
348     wordr1[2] = combs_buf[il_pos].i[6];
349     wordr1[3] = combs_buf[il_pos].i[7];
350
351     u32 wordr2[4];
352
353     wordr2[0] = 0;
354     wordr2[1] = 0;
355     wordr2[2] = 0;
356     wordr2[3] = 0;
357
358     u32 wordr3[4];
359
360     wordr3[0] = 0;
361     wordr3[1] = 0;
362     wordr3[2] = 0;
363     wordr3[3] = 0;
364
365     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
366     {
367       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
368     }
369
370     u32 w0[4];
371
372     w0[0] = wordl0[0] | wordr0[0];
373     w0[1] = wordl0[1] | wordr0[1];
374     w0[2] = wordl0[2] | wordr0[2];
375     w0[3] = wordl0[3] | wordr0[3];
376
377     u32 w1[4];
378
379     w1[0] = wordl1[0] | wordr1[0];
380     w1[1] = wordl1[1] | wordr1[1];
381     w1[2] = wordl1[2] | wordr1[2];
382     w1[3] = wordl1[3] | wordr1[3];
383
384     u32 w2[4];
385
386     w2[0] = wordl2[0] | wordr2[0];
387     w2[1] = wordl2[1] | wordr2[1];
388     w2[2] = wordl2[2] | wordr2[2];
389     w2[3] = wordl2[3] | wordr2[3];
390
391     u32 w3[4];
392
393     w3[0] = wordl3[0] | wordr3[0];
394     w3[1] = wordl3[1] | wordr3[1];
395     w3[2] = pw_len * 8;
396     w3[3] = 0;
397
398     u32 a = MD5M_A;
399     u32 b = MD5M_B;
400     u32 c = MD5M_C;
401     u32 d = MD5M_D;
402
403     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
404     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
405     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
406     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
407     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
408     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
409     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
410     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
411     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
412     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
413     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
414     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
415     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
416     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
417     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
418     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
419
420     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
421     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
422     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
423     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
424     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
425     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
426     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
427     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
428     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
429     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
430     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
431     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
432     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
433     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
434     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
435     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
436
437     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
438     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
439     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
440     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
441     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
442     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
443     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
444     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
445     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
446     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
447     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
448     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
449     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
450     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
451     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
452     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
453
454     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
455     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
456     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
457     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
458     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
459     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
460     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
461     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
462     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
463     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
464     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
465     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
466     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
467     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
468     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
469     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
470
471     a += MD5M_A;
472     b += MD5M_B;
473     c += MD5M_C;
474     d += MD5M_D;
475
476     {
477       const u32 r0 = a;
478       const u32 r1 = b;
479       const u32 r2 = 0;
480       const u32 r3 = 0;
481
482       #include COMPARE_S
483     }
484
485     {
486       const u32 r0 = b;
487       const u32 r1 = c;
488       const u32 r2 = 0;
489       const u32 r3 = 0;
490
491       #include COMPARE_S
492     }
493
494     {
495       const u32 r0 = c;
496       const u32 r1 = d;
497       const u32 r2 = 0;
498       const u32 r3 = 0;
499
500       #include COMPARE_S
501     }
502   }
503 }
504
505 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
506 {
507 }
508
509 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
510 {
511 }