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