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