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