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