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