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