Merge pull request #156 from gm4tr1x/master
[hashcat.git] / OpenCL / m02410_a3.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 static void m02410m (u32 w[16], const u32 pw_len, __global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
24 {
25   /**
26    * modifier
27    */
28
29   const u32 gid = get_global_id (0);
30   const u32 lid = get_local_id (0);
31
32   /**
33    * salt
34    */
35
36   u32 salt_buf0[4];
37
38   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
39   salt_buf0[1] = 0;
40   salt_buf0[2] = 0;
41   salt_buf0[3] = 0;
42
43   u32 salt_buf1[4];
44
45   salt_buf1[0] = 0;
46   salt_buf1[1] = 0;
47   salt_buf1[2] = 0;
48   salt_buf1[3] = 0;
49
50   u32 salt_buf2[4];
51
52   salt_buf2[0] = 0;
53   salt_buf2[1] = 0;
54   salt_buf2[2] = 0;
55   salt_buf2[3] = 0;
56
57   u32 salt_buf3[4];
58
59   salt_buf3[0] = 0;
60   salt_buf3[1] = 0;
61   salt_buf3[2] = 0;
62   salt_buf3[3] = 0;
63
64   switch_buffer_by_offset_le_S (salt_buf0, salt_buf1, salt_buf2, salt_buf3, pw_len);
65
66   w[0] |= salt_buf0[0];
67   w[1] |= salt_buf0[1];
68   w[2] |= salt_buf0[2];
69   w[3] |= salt_buf0[3];
70
71   const u32 salt_len = (salt_bufs[salt_pos].salt_len < 4) ? salt_bufs[salt_pos].salt_len : 4;
72
73   const u32 pw_salt_len = pw_len + salt_len;
74
75   truncate_block_S (w, pw_salt_len);
76
77   /**
78    * algorithm specific
79    */
80
81   w[ 4] = 0x80;
82   w[14] = 16 * 8;
83
84   /**
85    * base
86    */
87
88   const u32 F_w0c00 =    0  + MD5C00;
89   const u32 F_w1c01 = w[ 1] + MD5C01;
90   const u32 F_w2c02 = w[ 2] + MD5C02;
91   const u32 F_w3c03 = w[ 3] + MD5C03;
92   const u32 F_w4c04 = w[ 4] + MD5C04;
93   const u32 F_w5c05 = w[ 5] + MD5C05;
94   const u32 F_w6c06 = w[ 6] + MD5C06;
95   const u32 F_w7c07 = w[ 7] + MD5C07;
96   const u32 F_w8c08 = w[ 8] + MD5C08;
97   const u32 F_w9c09 = w[ 9] + MD5C09;
98   const u32 F_wac0a = w[10] + MD5C0a;
99   const u32 F_wbc0b = w[11] + MD5C0b;
100   const u32 F_wcc0c = w[12] + MD5C0c;
101   const u32 F_wdc0d = w[13] + MD5C0d;
102   const u32 F_wec0e = w[14] + MD5C0e;
103   const u32 F_wfc0f = w[15] + MD5C0f;
104
105   const u32 G_w1c10 = w[ 1] + MD5C10;
106   const u32 G_w6c11 = w[ 6] + MD5C11;
107   const u32 G_wbc12 = w[11] + MD5C12;
108   const u32 G_w0c13 =    0  + MD5C13;
109   const u32 G_w5c14 = w[ 5] + MD5C14;
110   const u32 G_wac15 = w[10] + MD5C15;
111   const u32 G_wfc16 = w[15] + MD5C16;
112   const u32 G_w4c17 = w[ 4] + MD5C17;
113   const u32 G_w9c18 = w[ 9] + MD5C18;
114   const u32 G_wec19 = w[14] + MD5C19;
115   const u32 G_w3c1a = w[ 3] + MD5C1a;
116   const u32 G_w8c1b = w[ 8] + MD5C1b;
117   const u32 G_wdc1c = w[13] + MD5C1c;
118   const u32 G_w2c1d = w[ 2] + MD5C1d;
119   const u32 G_w7c1e = w[ 7] + MD5C1e;
120   const u32 G_wcc1f = w[12] + MD5C1f;
121
122   const u32 H_w5c20 = w[ 5] + MD5C20;
123   const u32 H_w8c21 = w[ 8] + MD5C21;
124   const u32 H_wbc22 = w[11] + MD5C22;
125   const u32 H_wec23 = w[14] + MD5C23;
126   const u32 H_w1c24 = w[ 1] + MD5C24;
127   const u32 H_w4c25 = w[ 4] + MD5C25;
128   const u32 H_w7c26 = w[ 7] + MD5C26;
129   const u32 H_wac27 = w[10] + MD5C27;
130   const u32 H_wdc28 = w[13] + MD5C28;
131   const u32 H_w0c29 =    0  + MD5C29;
132   const u32 H_w3c2a = w[ 3] + MD5C2a;
133   const u32 H_w6c2b = w[ 6] + MD5C2b;
134   const u32 H_w9c2c = w[ 9] + MD5C2c;
135   const u32 H_wcc2d = w[12] + MD5C2d;
136   const u32 H_wfc2e = w[15] + MD5C2e;
137   const u32 H_w2c2f = w[ 2] + MD5C2f;
138
139   const u32 I_w0c30 =    0  + MD5C30;
140   const u32 I_w7c31 = w[ 7] + MD5C31;
141   const u32 I_wec32 = w[14] + MD5C32;
142   const u32 I_w5c33 = w[ 5] + MD5C33;
143   const u32 I_wcc34 = w[12] + MD5C34;
144   const u32 I_w3c35 = w[ 3] + MD5C35;
145   const u32 I_wac36 = w[10] + MD5C36;
146   const u32 I_w1c37 = w[ 1] + MD5C37;
147   const u32 I_w8c38 = w[ 8] + MD5C38;
148   const u32 I_wfc39 = w[15] + MD5C39;
149   const u32 I_w6c3a = w[ 6] + MD5C3a;
150   const u32 I_wdc3b = w[13] + MD5C3b;
151   const u32 I_w4c3c = w[ 4] + MD5C3c;
152   const u32 I_wbc3d = w[11] + MD5C3d;
153   const u32 I_w2c3e = w[ 2] + MD5C3e;
154   const u32 I_w9c3f = w[ 9] + MD5C3f;
155
156   /**
157    * loop
158    */
159
160   u32 w0l = w[0];
161
162   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos += VECT_SIZE)
163   {
164     const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
165
166     const u32x w0 = w0l | w0r;
167
168     //u32x tmp2;
169
170     u32x a = MD5M_A;
171     u32x b = MD5M_B;
172     u32x c = MD5M_C;
173     u32x d = MD5M_D;
174
175     MD5_STEP (MD5_Fo, a, b, c, d, w0, F_w0c00, MD5S00);
176     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w1c01, MD5S01);
177     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w2c02, MD5S02);
178     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w3c03, MD5S03);
179     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w4c04, MD5S00);
180     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w5c05, MD5S01);
181     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w6c06, MD5S02);
182     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w7c07, MD5S03);
183     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w8c08, MD5S00);
184     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w9c09, MD5S01);
185     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wac0a, MD5S02);
186     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wbc0b, MD5S03);
187     MD5_STEP0(MD5_Fo, a, b, c, d,     F_wcc0c, MD5S00);
188     MD5_STEP0(MD5_Fo, d, a, b, c,     F_wdc0d, MD5S01);
189     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wec0e, MD5S02);
190     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wfc0f, MD5S03);
191
192     MD5_STEP0(MD5_Go, a, b, c, d,     G_w1c10, MD5S10);
193     MD5_STEP0(MD5_Go, d, a, b, c,     G_w6c11, MD5S11);
194     MD5_STEP0(MD5_Go, c, d, a, b,     G_wbc12, MD5S12);
195     MD5_STEP (MD5_Go, b, c, d, a, w0, G_w0c13, MD5S13);
196     MD5_STEP0(MD5_Go, a, b, c, d,     G_w5c14, MD5S10);
197     MD5_STEP0(MD5_Go, d, a, b, c,     G_wac15, MD5S11);
198     MD5_STEP0(MD5_Go, c, d, a, b,     G_wfc16, MD5S12);
199     MD5_STEP0(MD5_Go, b, c, d, a,     G_w4c17, MD5S13);
200     MD5_STEP0(MD5_Go, a, b, c, d,     G_w9c18, MD5S10);
201     MD5_STEP0(MD5_Go, d, a, b, c,     G_wec19, MD5S11);
202     MD5_STEP0(MD5_Go, c, d, a, b,     G_w3c1a, MD5S12);
203     MD5_STEP0(MD5_Go, b, c, d, a,     G_w8c1b, MD5S13);
204     MD5_STEP0(MD5_Go, a, b, c, d,     G_wdc1c, MD5S10);
205     MD5_STEP0(MD5_Go, d, a, b, c,     G_w2c1d, MD5S11);
206     MD5_STEP0(MD5_Go, c, d, a, b,     G_w7c1e, MD5S12);
207     MD5_STEP0(MD5_Go, b, c, d, a,     G_wcc1f, MD5S13);
208
209     MD5_STEP0(MD5_H1, a, b, c, d,     H_w5c20, MD5S20);
210     MD5_STEP0(MD5_H2, d, a, b, c,     H_w8c21, MD5S21);
211     MD5_STEP0(MD5_H1, c, d, a, b,     H_wbc22, MD5S22);
212     MD5_STEP0(MD5_H2, b, c, d, a,     H_wec23, MD5S23);
213     MD5_STEP0(MD5_H1, a, b, c, d,     H_w1c24, MD5S20);
214     MD5_STEP0(MD5_H2, d, a, b, c,     H_w4c25, MD5S21);
215     MD5_STEP0(MD5_H1, c, d, a, b,     H_w7c26, MD5S22);
216     MD5_STEP0(MD5_H2, b, c, d, a,     H_wac27, MD5S23);
217     MD5_STEP0(MD5_H1, a, b, c, d,     H_wdc28, MD5S20);
218     MD5_STEP (MD5_H2, d, a, b, c, w0, H_w0c29, MD5S21);
219     MD5_STEP0(MD5_H1, c, d, a, b,     H_w3c2a, MD5S22);
220     MD5_STEP0(MD5_H2, b, c, d, a,     H_w6c2b, MD5S23);
221     MD5_STEP0(MD5_H1, a, b, c, d,     H_w9c2c, MD5S20);
222     MD5_STEP0(MD5_H2, d, a, b, c,     H_wcc2d, MD5S21);
223     MD5_STEP0(MD5_H1, c, d, a, b,     H_wfc2e, MD5S22);
224     MD5_STEP0(MD5_H2, b, c, d, a,     H_w2c2f, MD5S23);
225
226     MD5_STEP (MD5_I , a, b, c, d, w0, I_w0c30, MD5S30);
227     MD5_STEP0(MD5_I , d, a, b, c,     I_w7c31, MD5S31);
228     MD5_STEP0(MD5_I , c, d, a, b,     I_wec32, MD5S32);
229     MD5_STEP0(MD5_I , b, c, d, a,     I_w5c33, MD5S33);
230     MD5_STEP0(MD5_I , a, b, c, d,     I_wcc34, MD5S30);
231     MD5_STEP0(MD5_I , d, a, b, c,     I_w3c35, MD5S31);
232     MD5_STEP0(MD5_I , c, d, a, b,     I_wac36, MD5S32);
233     MD5_STEP0(MD5_I , b, c, d, a,     I_w1c37, MD5S33);
234     MD5_STEP0(MD5_I , a, b, c, d,     I_w8c38, MD5S30);
235     MD5_STEP0(MD5_I , d, a, b, c,     I_wfc39, MD5S31);
236     MD5_STEP0(MD5_I , c, d, a, b,     I_w6c3a, MD5S32);
237     MD5_STEP0(MD5_I , b, c, d, a,     I_wdc3b, MD5S33);
238     MD5_STEP0(MD5_I , a, b, c, d,     I_w4c3c, MD5S30);
239     MD5_STEP0(MD5_I , d, a, b, c,     I_wbc3d, MD5S31);
240     MD5_STEP0(MD5_I , c, d, a, b,     I_w2c3e, MD5S32);
241     MD5_STEP0(MD5_I , b, c, d, a,     I_w9c3f, MD5S33);
242
243     a &= 0x00ffffff;
244     d &= 0x00ffffff;
245     c &= 0x00ffffff;
246     b &= 0x00ffffff;
247
248     COMPARE_M_SIMD (a, d, c, b);
249   }
250 }
251
252 static void m02410s (u32 w[16], const u32 pw_len, __global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
253 {
254   /**
255    * modifier
256    */
257
258   const u32 gid = get_global_id (0);
259   const u32 lid = get_local_id (0);
260
261   /**
262    * salt
263    */
264
265   u32 salt_buf0[4];
266
267   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
268   salt_buf0[1] = 0;
269   salt_buf0[2] = 0;
270   salt_buf0[3] = 0;
271
272   u32 salt_buf1[4];
273
274   salt_buf1[0] = 0;
275   salt_buf1[1] = 0;
276   salt_buf1[2] = 0;
277   salt_buf1[3] = 0;
278
279   u32 salt_buf2[4];
280
281   salt_buf2[0] = 0;
282   salt_buf2[1] = 0;
283   salt_buf2[2] = 0;
284   salt_buf2[3] = 0;
285
286   u32 salt_buf3[4];
287
288   salt_buf3[0] = 0;
289   salt_buf3[1] = 0;
290   salt_buf3[2] = 0;
291   salt_buf3[3] = 0;
292
293   switch_buffer_by_offset_le_S (salt_buf0, salt_buf1, salt_buf2, salt_buf3, pw_len);
294
295   w[0] |= salt_buf0[0];
296   w[1] |= salt_buf0[1];
297   w[2] |= salt_buf0[2];
298   w[3] |= salt_buf0[3];
299
300   const u32 salt_len = (salt_bufs[salt_pos].salt_len < 4) ? salt_bufs[salt_pos].salt_len : 4;
301
302   const u32 pw_salt_len = pw_len + salt_len;
303
304   truncate_block_S (w, pw_salt_len);
305
306   /**
307    * algorithm specific
308    */
309
310   w[ 4] = 0x80;
311   w[14] = 16 * 8;
312
313   /**
314    * base
315    */
316
317   const u32 F_w0c00 =    0  + MD5C00;
318   const u32 F_w1c01 = w[ 1] + MD5C01;
319   const u32 F_w2c02 = w[ 2] + MD5C02;
320   const u32 F_w3c03 = w[ 3] + MD5C03;
321   const u32 F_w4c04 = w[ 4] + MD5C04;
322   const u32 F_w5c05 = w[ 5] + MD5C05;
323   const u32 F_w6c06 = w[ 6] + MD5C06;
324   const u32 F_w7c07 = w[ 7] + MD5C07;
325   const u32 F_w8c08 = w[ 8] + MD5C08;
326   const u32 F_w9c09 = w[ 9] + MD5C09;
327   const u32 F_wac0a = w[10] + MD5C0a;
328   const u32 F_wbc0b = w[11] + MD5C0b;
329   const u32 F_wcc0c = w[12] + MD5C0c;
330   const u32 F_wdc0d = w[13] + MD5C0d;
331   const u32 F_wec0e = w[14] + MD5C0e;
332   const u32 F_wfc0f = w[15] + MD5C0f;
333
334   const u32 G_w1c10 = w[ 1] + MD5C10;
335   const u32 G_w6c11 = w[ 6] + MD5C11;
336   const u32 G_wbc12 = w[11] + MD5C12;
337   const u32 G_w0c13 =    0  + MD5C13;
338   const u32 G_w5c14 = w[ 5] + MD5C14;
339   const u32 G_wac15 = w[10] + MD5C15;
340   const u32 G_wfc16 = w[15] + MD5C16;
341   const u32 G_w4c17 = w[ 4] + MD5C17;
342   const u32 G_w9c18 = w[ 9] + MD5C18;
343   const u32 G_wec19 = w[14] + MD5C19;
344   const u32 G_w3c1a = w[ 3] + MD5C1a;
345   const u32 G_w8c1b = w[ 8] + MD5C1b;
346   const u32 G_wdc1c = w[13] + MD5C1c;
347   const u32 G_w2c1d = w[ 2] + MD5C1d;
348   const u32 G_w7c1e = w[ 7] + MD5C1e;
349   const u32 G_wcc1f = w[12] + MD5C1f;
350
351   const u32 H_w5c20 = w[ 5] + MD5C20;
352   const u32 H_w8c21 = w[ 8] + MD5C21;
353   const u32 H_wbc22 = w[11] + MD5C22;
354   const u32 H_wec23 = w[14] + MD5C23;
355   const u32 H_w1c24 = w[ 1] + MD5C24;
356   const u32 H_w4c25 = w[ 4] + MD5C25;
357   const u32 H_w7c26 = w[ 7] + MD5C26;
358   const u32 H_wac27 = w[10] + MD5C27;
359   const u32 H_wdc28 = w[13] + MD5C28;
360   const u32 H_w0c29 =    0  + MD5C29;
361   const u32 H_w3c2a = w[ 3] + MD5C2a;
362   const u32 H_w6c2b = w[ 6] + MD5C2b;
363   const u32 H_w9c2c = w[ 9] + MD5C2c;
364   const u32 H_wcc2d = w[12] + MD5C2d;
365   const u32 H_wfc2e = w[15] + MD5C2e;
366   const u32 H_w2c2f = w[ 2] + MD5C2f;
367
368   const u32 I_w0c30 =    0  + MD5C30;
369   const u32 I_w7c31 = w[ 7] + MD5C31;
370   const u32 I_wec32 = w[14] + MD5C32;
371   const u32 I_w5c33 = w[ 5] + MD5C33;
372   const u32 I_wcc34 = w[12] + MD5C34;
373   const u32 I_w3c35 = w[ 3] + MD5C35;
374   const u32 I_wac36 = w[10] + MD5C36;
375   const u32 I_w1c37 = w[ 1] + MD5C37;
376   const u32 I_w8c38 = w[ 8] + MD5C38;
377   const u32 I_wfc39 = w[15] + MD5C39;
378   const u32 I_w6c3a = w[ 6] + MD5C3a;
379   const u32 I_wdc3b = w[13] + MD5C3b;
380   const u32 I_w4c3c = w[ 4] + MD5C3c;
381   const u32 I_wbc3d = w[11] + MD5C3d;
382   const u32 I_w2c3e = w[ 2] + MD5C3e;
383   const u32 I_w9c3f = w[ 9] + MD5C3f;
384
385   /**
386    * digest
387    */
388
389   const u32 search[4] =
390   {
391     digests_buf[digests_offset].digest_buf[DGST_R0],
392     digests_buf[digests_offset].digest_buf[DGST_R1],
393     digests_buf[digests_offset].digest_buf[DGST_R2],
394     digests_buf[digests_offset].digest_buf[DGST_R3]
395   };
396
397   /**
398    * loop
399    */
400
401   u32 w0l = w[0];
402
403   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos += VECT_SIZE)
404   {
405     const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
406
407     const u32x w0 = w0l | w0r;
408
409     //u32x tmp2;
410
411     u32x a = MD5M_A;
412     u32x b = MD5M_B;
413     u32x c = MD5M_C;
414     u32x d = MD5M_D;
415
416     MD5_STEP (MD5_Fo, a, b, c, d, w0, F_w0c00, MD5S00);
417     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w1c01, MD5S01);
418     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w2c02, MD5S02);
419     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w3c03, MD5S03);
420     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w4c04, MD5S00);
421     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w5c05, MD5S01);
422     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w6c06, MD5S02);
423     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w7c07, MD5S03);
424     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w8c08, MD5S00);
425     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w9c09, MD5S01);
426     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wac0a, MD5S02);
427     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wbc0b, MD5S03);
428     MD5_STEP0(MD5_Fo, a, b, c, d,     F_wcc0c, MD5S00);
429     MD5_STEP0(MD5_Fo, d, a, b, c,     F_wdc0d, MD5S01);
430     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wec0e, MD5S02);
431     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wfc0f, MD5S03);
432
433     MD5_STEP0(MD5_Go, a, b, c, d,     G_w1c10, MD5S10);
434     MD5_STEP0(MD5_Go, d, a, b, c,     G_w6c11, MD5S11);
435     MD5_STEP0(MD5_Go, c, d, a, b,     G_wbc12, MD5S12);
436     MD5_STEP (MD5_Go, b, c, d, a, w0, G_w0c13, MD5S13);
437     MD5_STEP0(MD5_Go, a, b, c, d,     G_w5c14, MD5S10);
438     MD5_STEP0(MD5_Go, d, a, b, c,     G_wac15, MD5S11);
439     MD5_STEP0(MD5_Go, c, d, a, b,     G_wfc16, MD5S12);
440     MD5_STEP0(MD5_Go, b, c, d, a,     G_w4c17, MD5S13);
441     MD5_STEP0(MD5_Go, a, b, c, d,     G_w9c18, MD5S10);
442     MD5_STEP0(MD5_Go, d, a, b, c,     G_wec19, MD5S11);
443     MD5_STEP0(MD5_Go, c, d, a, b,     G_w3c1a, MD5S12);
444     MD5_STEP0(MD5_Go, b, c, d, a,     G_w8c1b, MD5S13);
445     MD5_STEP0(MD5_Go, a, b, c, d,     G_wdc1c, MD5S10);
446     MD5_STEP0(MD5_Go, d, a, b, c,     G_w2c1d, MD5S11);
447     MD5_STEP0(MD5_Go, c, d, a, b,     G_w7c1e, MD5S12);
448     MD5_STEP0(MD5_Go, b, c, d, a,     G_wcc1f, MD5S13);
449
450     MD5_STEP0(MD5_H1, a, b, c, d,     H_w5c20, MD5S20);
451     MD5_STEP0(MD5_H2, d, a, b, c,     H_w8c21, MD5S21);
452     MD5_STEP0(MD5_H1, c, d, a, b,     H_wbc22, MD5S22);
453     MD5_STEP0(MD5_H2, b, c, d, a,     H_wec23, MD5S23);
454     MD5_STEP0(MD5_H1, a, b, c, d,     H_w1c24, MD5S20);
455     MD5_STEP0(MD5_H2, d, a, b, c,     H_w4c25, MD5S21);
456     MD5_STEP0(MD5_H1, c, d, a, b,     H_w7c26, MD5S22);
457     MD5_STEP0(MD5_H2, b, c, d, a,     H_wac27, MD5S23);
458     MD5_STEP0(MD5_H1, a, b, c, d,     H_wdc28, MD5S20);
459     MD5_STEP (MD5_H2, d, a, b, c, w0, H_w0c29, MD5S21);
460     MD5_STEP0(MD5_H1, c, d, a, b,     H_w3c2a, MD5S22);
461     MD5_STEP0(MD5_H2, b, c, d, a,     H_w6c2b, MD5S23);
462     MD5_STEP0(MD5_H1, a, b, c, d,     H_w9c2c, MD5S20);
463     MD5_STEP0(MD5_H2, d, a, b, c,     H_wcc2d, MD5S21);
464     MD5_STEP0(MD5_H1, c, d, a, b,     H_wfc2e, MD5S22);
465     MD5_STEP0(MD5_H2, b, c, d, a,     H_w2c2f, MD5S23);
466
467     MD5_STEP (MD5_I , a, b, c, d, w0, I_w0c30, MD5S30);
468     MD5_STEP0(MD5_I , d, a, b, c,     I_w7c31, MD5S31);
469     MD5_STEP0(MD5_I , c, d, a, b,     I_wec32, MD5S32);
470     MD5_STEP0(MD5_I , b, c, d, a,     I_w5c33, MD5S33);
471     MD5_STEP0(MD5_I , a, b, c, d,     I_wcc34, MD5S30);
472     MD5_STEP0(MD5_I , d, a, b, c,     I_w3c35, MD5S31);
473     MD5_STEP0(MD5_I , c, d, a, b,     I_wac36, MD5S32);
474     MD5_STEP0(MD5_I , b, c, d, a,     I_w1c37, MD5S33);
475     MD5_STEP0(MD5_I , a, b, c, d,     I_w8c38, MD5S30);
476     MD5_STEP0(MD5_I , d, a, b, c,     I_wfc39, MD5S31);
477     MD5_STEP0(MD5_I , c, d, a, b,     I_w6c3a, MD5S32);
478     MD5_STEP0(MD5_I , b, c, d, a,     I_wdc3b, MD5S33);
479     MD5_STEP0(MD5_I , a, b, c, d,     I_w4c3c, MD5S30);
480
481     if (MATCHES_NONE_VS ((a & 0x00ffffff), search[0])) continue;
482
483     MD5_STEP0(MD5_I , d, a, b, c,     I_wbc3d, MD5S31);
484     MD5_STEP0(MD5_I , c, d, a, b,     I_w2c3e, MD5S32);
485     MD5_STEP0(MD5_I , b, c, d, a,     I_w9c3f, MD5S33);
486
487     a &= 0x00ffffff;
488     d &= 0x00ffffff;
489     c &= 0x00ffffff;
490     b &= 0x00ffffff;
491
492     COMPARE_S_SIMD (a, d, c, b);
493   }
494 }
495
496 __kernel void m02410_m04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
497 {
498   /**
499    * base
500    */
501
502   const u32 gid = get_global_id (0);
503
504   if (gid >= gid_max) return;
505
506   u32 w[16];
507
508   w[ 0] = pws[gid].i[ 0];
509   w[ 1] = pws[gid].i[ 1];
510   w[ 2] = pws[gid].i[ 2];
511   w[ 3] = pws[gid].i[ 3];
512   w[ 4] = 0;
513   w[ 5] = 0;
514   w[ 6] = 0;
515   w[ 7] = 0;
516   w[ 8] = 0;
517   w[ 9] = 0;
518   w[10] = 0;
519   w[11] = 0;
520   w[12] = 0;
521   w[13] = 0;
522   w[14] = 0;
523   w[15] = 0;
524
525   const u32 pw_len = pws[gid].pw_len;
526
527   /**
528    * main
529    */
530
531   m02410m (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
532 }
533
534 __kernel void m02410_m08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
535 {
536 }
537
538 __kernel void m02410_m16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
539 {
540 }
541
542 __kernel void m02410_s04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
543 {
544   /**
545    * base
546    */
547
548   const u32 gid = get_global_id (0);
549
550   if (gid >= gid_max) return;
551
552   u32 w[16];
553
554   w[ 0] = pws[gid].i[ 0];
555   w[ 1] = pws[gid].i[ 1];
556   w[ 2] = pws[gid].i[ 2];
557   w[ 3] = pws[gid].i[ 3];
558   w[ 4] = 0;
559   w[ 5] = 0;
560   w[ 6] = 0;
561   w[ 7] = 0;
562   w[ 8] = 0;
563   w[ 9] = 0;
564   w[10] = 0;
565   w[11] = 0;
566   w[12] = 0;
567   w[13] = 0;
568   w[14] = 0;
569   w[15] = 0;
570
571   const u32 pw_len = pws[gid].pw_len;
572
573   /**
574    * main
575    */
576
577   m02410s (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
578 }
579
580 __kernel void m02410_s08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
581 {
582 }
583
584 __kernel void m02410_s16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
585 {
586 }