Merge branch 'master' of https://github.com/hashcat/oclHashcat
[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 a = MD5M_A;
169     u32x b = MD5M_B;
170     u32x c = MD5M_C;
171     u32x d = MD5M_D;
172
173     MD5_STEP (MD5_Fo, a, b, c, d, w0, F_w0c00, MD5S00);
174     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w1c01, MD5S01);
175     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w2c02, MD5S02);
176     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w3c03, MD5S03);
177     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w4c04, MD5S00);
178     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w5c05, MD5S01);
179     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w6c06, MD5S02);
180     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w7c07, MD5S03);
181     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w8c08, MD5S00);
182     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w9c09, MD5S01);
183     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wac0a, MD5S02);
184     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wbc0b, MD5S03);
185     MD5_STEP0(MD5_Fo, a, b, c, d,     F_wcc0c, MD5S00);
186     MD5_STEP0(MD5_Fo, d, a, b, c,     F_wdc0d, MD5S01);
187     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wec0e, MD5S02);
188     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wfc0f, MD5S03);
189
190     MD5_STEP0(MD5_Go, a, b, c, d,     G_w1c10, MD5S10);
191     MD5_STEP0(MD5_Go, d, a, b, c,     G_w6c11, MD5S11);
192     MD5_STEP0(MD5_Go, c, d, a, b,     G_wbc12, MD5S12);
193     MD5_STEP (MD5_Go, b, c, d, a, w0, G_w0c13, MD5S13);
194     MD5_STEP0(MD5_Go, a, b, c, d,     G_w5c14, MD5S10);
195     MD5_STEP0(MD5_Go, d, a, b, c,     G_wac15, MD5S11);
196     MD5_STEP0(MD5_Go, c, d, a, b,     G_wfc16, MD5S12);
197     MD5_STEP0(MD5_Go, b, c, d, a,     G_w4c17, MD5S13);
198     MD5_STEP0(MD5_Go, a, b, c, d,     G_w9c18, MD5S10);
199     MD5_STEP0(MD5_Go, d, a, b, c,     G_wec19, MD5S11);
200     MD5_STEP0(MD5_Go, c, d, a, b,     G_w3c1a, MD5S12);
201     MD5_STEP0(MD5_Go, b, c, d, a,     G_w8c1b, MD5S13);
202     MD5_STEP0(MD5_Go, a, b, c, d,     G_wdc1c, MD5S10);
203     MD5_STEP0(MD5_Go, d, a, b, c,     G_w2c1d, MD5S11);
204     MD5_STEP0(MD5_Go, c, d, a, b,     G_w7c1e, MD5S12);
205     MD5_STEP0(MD5_Go, b, c, d, a,     G_wcc1f, MD5S13);
206
207     MD5_STEP0(MD5_H , a, b, c, d,     H_w5c20, MD5S20);
208     MD5_STEP0(MD5_H , d, a, b, c,     H_w8c21, MD5S21);
209     MD5_STEP0(MD5_H , c, d, a, b,     H_wbc22, MD5S22);
210     MD5_STEP0(MD5_H , b, c, d, a,     H_wec23, MD5S23);
211     MD5_STEP0(MD5_H , a, b, c, d,     H_w1c24, MD5S20);
212     MD5_STEP0(MD5_H , d, a, b, c,     H_w4c25, MD5S21);
213     MD5_STEP0(MD5_H , c, d, a, b,     H_w7c26, MD5S22);
214     MD5_STEP0(MD5_H , b, c, d, a,     H_wac27, MD5S23);
215     MD5_STEP0(MD5_H , a, b, c, d,     H_wdc28, MD5S20);
216     MD5_STEP (MD5_H , d, a, b, c, w0, H_w0c29, MD5S21);
217     MD5_STEP0(MD5_H , c, d, a, b,     H_w3c2a, MD5S22);
218     MD5_STEP0(MD5_H , b, c, d, a,     H_w6c2b, MD5S23);
219     MD5_STEP0(MD5_H , a, b, c, d,     H_w9c2c, MD5S20);
220     MD5_STEP0(MD5_H , d, a, b, c,     H_wcc2d, MD5S21);
221     MD5_STEP0(MD5_H , c, d, a, b,     H_wfc2e, MD5S22);
222     MD5_STEP0(MD5_H , b, c, d, a,     H_w2c2f, MD5S23);
223
224     MD5_STEP (MD5_I , a, b, c, d, w0, I_w0c30, MD5S30);
225     MD5_STEP0(MD5_I , d, a, b, c,     I_w7c31, MD5S31);
226     MD5_STEP0(MD5_I , c, d, a, b,     I_wec32, MD5S32);
227     MD5_STEP0(MD5_I , b, c, d, a,     I_w5c33, MD5S33);
228     MD5_STEP0(MD5_I , a, b, c, d,     I_wcc34, MD5S30);
229     MD5_STEP0(MD5_I , d, a, b, c,     I_w3c35, MD5S31);
230     MD5_STEP0(MD5_I , c, d, a, b,     I_wac36, MD5S32);
231     MD5_STEP0(MD5_I , b, c, d, a,     I_w1c37, MD5S33);
232     MD5_STEP0(MD5_I , a, b, c, d,     I_w8c38, MD5S30);
233     MD5_STEP0(MD5_I , d, a, b, c,     I_wfc39, MD5S31);
234     MD5_STEP0(MD5_I , c, d, a, b,     I_w6c3a, MD5S32);
235     MD5_STEP0(MD5_I , b, c, d, a,     I_wdc3b, MD5S33);
236     MD5_STEP0(MD5_I , a, b, c, d,     I_w4c3c, MD5S30);
237     MD5_STEP0(MD5_I , d, a, b, c,     I_wbc3d, MD5S31);
238     MD5_STEP0(MD5_I , c, d, a, b,     I_w2c3e, MD5S32);
239     MD5_STEP0(MD5_I , b, c, d, a,     I_w9c3f, MD5S33);
240
241     a &= 0x00ffffff;
242     d &= 0x00ffffff;
243     c &= 0x00ffffff;
244     b &= 0x00ffffff;
245
246     COMPARE_M_SIMD (a, d, c, b);
247   }
248 }
249
250 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)
251 {
252   /**
253    * modifier
254    */
255
256   const u32 gid = get_global_id (0);
257   const u32 lid = get_local_id (0);
258
259   /**
260    * salt
261    */
262
263   u32 salt_buf0[4];
264
265   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
266   salt_buf0[1] = 0;
267   salt_buf0[2] = 0;
268   salt_buf0[3] = 0;
269
270   u32 salt_buf1[4];
271
272   salt_buf1[0] = 0;
273   salt_buf1[1] = 0;
274   salt_buf1[2] = 0;
275   salt_buf1[3] = 0;
276
277   u32 salt_buf2[4];
278
279   salt_buf2[0] = 0;
280   salt_buf2[1] = 0;
281   salt_buf2[2] = 0;
282   salt_buf2[3] = 0;
283
284   u32 salt_buf3[4];
285
286   salt_buf3[0] = 0;
287   salt_buf3[1] = 0;
288   salt_buf3[2] = 0;
289   salt_buf3[3] = 0;
290
291   switch_buffer_by_offset_le_S (salt_buf0, salt_buf1, salt_buf2, salt_buf3, pw_len);
292
293   w[0] |= salt_buf0[0];
294   w[1] |= salt_buf0[1];
295   w[2] |= salt_buf0[2];
296   w[3] |= salt_buf0[3];
297
298   const u32 salt_len = (salt_bufs[salt_pos].salt_len < 4) ? salt_bufs[salt_pos].salt_len : 4;
299
300   const u32 pw_salt_len = pw_len + salt_len;
301
302   truncate_block_S (w, pw_salt_len);
303
304   /**
305    * algorithm specific
306    */
307
308   w[ 4] = 0x80;
309   w[14] = 16 * 8;
310
311   /**
312    * base
313    */
314
315   const u32 F_w0c00 =    0  + MD5C00;
316   const u32 F_w1c01 = w[ 1] + MD5C01;
317   const u32 F_w2c02 = w[ 2] + MD5C02;
318   const u32 F_w3c03 = w[ 3] + MD5C03;
319   const u32 F_w4c04 = w[ 4] + MD5C04;
320   const u32 F_w5c05 = w[ 5] + MD5C05;
321   const u32 F_w6c06 = w[ 6] + MD5C06;
322   const u32 F_w7c07 = w[ 7] + MD5C07;
323   const u32 F_w8c08 = w[ 8] + MD5C08;
324   const u32 F_w9c09 = w[ 9] + MD5C09;
325   const u32 F_wac0a = w[10] + MD5C0a;
326   const u32 F_wbc0b = w[11] + MD5C0b;
327   const u32 F_wcc0c = w[12] + MD5C0c;
328   const u32 F_wdc0d = w[13] + MD5C0d;
329   const u32 F_wec0e = w[14] + MD5C0e;
330   const u32 F_wfc0f = w[15] + MD5C0f;
331
332   const u32 G_w1c10 = w[ 1] + MD5C10;
333   const u32 G_w6c11 = w[ 6] + MD5C11;
334   const u32 G_wbc12 = w[11] + MD5C12;
335   const u32 G_w0c13 =    0  + MD5C13;
336   const u32 G_w5c14 = w[ 5] + MD5C14;
337   const u32 G_wac15 = w[10] + MD5C15;
338   const u32 G_wfc16 = w[15] + MD5C16;
339   const u32 G_w4c17 = w[ 4] + MD5C17;
340   const u32 G_w9c18 = w[ 9] + MD5C18;
341   const u32 G_wec19 = w[14] + MD5C19;
342   const u32 G_w3c1a = w[ 3] + MD5C1a;
343   const u32 G_w8c1b = w[ 8] + MD5C1b;
344   const u32 G_wdc1c = w[13] + MD5C1c;
345   const u32 G_w2c1d = w[ 2] + MD5C1d;
346   const u32 G_w7c1e = w[ 7] + MD5C1e;
347   const u32 G_wcc1f = w[12] + MD5C1f;
348
349   const u32 H_w5c20 = w[ 5] + MD5C20;
350   const u32 H_w8c21 = w[ 8] + MD5C21;
351   const u32 H_wbc22 = w[11] + MD5C22;
352   const u32 H_wec23 = w[14] + MD5C23;
353   const u32 H_w1c24 = w[ 1] + MD5C24;
354   const u32 H_w4c25 = w[ 4] + MD5C25;
355   const u32 H_w7c26 = w[ 7] + MD5C26;
356   const u32 H_wac27 = w[10] + MD5C27;
357   const u32 H_wdc28 = w[13] + MD5C28;
358   const u32 H_w0c29 =    0  + MD5C29;
359   const u32 H_w3c2a = w[ 3] + MD5C2a;
360   const u32 H_w6c2b = w[ 6] + MD5C2b;
361   const u32 H_w9c2c = w[ 9] + MD5C2c;
362   const u32 H_wcc2d = w[12] + MD5C2d;
363   const u32 H_wfc2e = w[15] + MD5C2e;
364   const u32 H_w2c2f = w[ 2] + MD5C2f;
365
366   const u32 I_w0c30 =    0  + MD5C30;
367   const u32 I_w7c31 = w[ 7] + MD5C31;
368   const u32 I_wec32 = w[14] + MD5C32;
369   const u32 I_w5c33 = w[ 5] + MD5C33;
370   const u32 I_wcc34 = w[12] + MD5C34;
371   const u32 I_w3c35 = w[ 3] + MD5C35;
372   const u32 I_wac36 = w[10] + MD5C36;
373   const u32 I_w1c37 = w[ 1] + MD5C37;
374   const u32 I_w8c38 = w[ 8] + MD5C38;
375   const u32 I_wfc39 = w[15] + MD5C39;
376   const u32 I_w6c3a = w[ 6] + MD5C3a;
377   const u32 I_wdc3b = w[13] + MD5C3b;
378   const u32 I_w4c3c = w[ 4] + MD5C3c;
379   const u32 I_wbc3d = w[11] + MD5C3d;
380   const u32 I_w2c3e = w[ 2] + MD5C3e;
381   const u32 I_w9c3f = w[ 9] + MD5C3f;
382
383   /**
384    * digest
385    */
386
387   const u32 search[4] =
388   {
389     digests_buf[digests_offset].digest_buf[DGST_R0],
390     digests_buf[digests_offset].digest_buf[DGST_R1],
391     digests_buf[digests_offset].digest_buf[DGST_R2],
392     digests_buf[digests_offset].digest_buf[DGST_R3]
393   };
394
395   /**
396    * loop
397    */
398
399   u32 w0l = w[0];
400
401   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos += VECT_SIZE)
402   {
403     const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
404
405     const u32x w0 = w0l | w0r;
406
407     u32x a = MD5M_A;
408     u32x b = MD5M_B;
409     u32x c = MD5M_C;
410     u32x d = MD5M_D;
411
412     MD5_STEP (MD5_Fo, a, b, c, d, w0, F_w0c00, MD5S00);
413     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w1c01, MD5S01);
414     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w2c02, MD5S02);
415     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w3c03, MD5S03);
416     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w4c04, MD5S00);
417     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w5c05, MD5S01);
418     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w6c06, MD5S02);
419     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w7c07, MD5S03);
420     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w8c08, MD5S00);
421     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w9c09, MD5S01);
422     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wac0a, MD5S02);
423     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wbc0b, MD5S03);
424     MD5_STEP0(MD5_Fo, a, b, c, d,     F_wcc0c, MD5S00);
425     MD5_STEP0(MD5_Fo, d, a, b, c,     F_wdc0d, MD5S01);
426     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wec0e, MD5S02);
427     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wfc0f, MD5S03);
428
429     MD5_STEP0(MD5_Go, a, b, c, d,     G_w1c10, MD5S10);
430     MD5_STEP0(MD5_Go, d, a, b, c,     G_w6c11, MD5S11);
431     MD5_STEP0(MD5_Go, c, d, a, b,     G_wbc12, MD5S12);
432     MD5_STEP (MD5_Go, b, c, d, a, w0, G_w0c13, MD5S13);
433     MD5_STEP0(MD5_Go, a, b, c, d,     G_w5c14, MD5S10);
434     MD5_STEP0(MD5_Go, d, a, b, c,     G_wac15, MD5S11);
435     MD5_STEP0(MD5_Go, c, d, a, b,     G_wfc16, MD5S12);
436     MD5_STEP0(MD5_Go, b, c, d, a,     G_w4c17, MD5S13);
437     MD5_STEP0(MD5_Go, a, b, c, d,     G_w9c18, MD5S10);
438     MD5_STEP0(MD5_Go, d, a, b, c,     G_wec19, MD5S11);
439     MD5_STEP0(MD5_Go, c, d, a, b,     G_w3c1a, MD5S12);
440     MD5_STEP0(MD5_Go, b, c, d, a,     G_w8c1b, MD5S13);
441     MD5_STEP0(MD5_Go, a, b, c, d,     G_wdc1c, MD5S10);
442     MD5_STEP0(MD5_Go, d, a, b, c,     G_w2c1d, MD5S11);
443     MD5_STEP0(MD5_Go, c, d, a, b,     G_w7c1e, MD5S12);
444     MD5_STEP0(MD5_Go, b, c, d, a,     G_wcc1f, MD5S13);
445
446     MD5_STEP0(MD5_H , a, b, c, d,     H_w5c20, MD5S20);
447     MD5_STEP0(MD5_H , d, a, b, c,     H_w8c21, MD5S21);
448     MD5_STEP0(MD5_H , c, d, a, b,     H_wbc22, MD5S22);
449     MD5_STEP0(MD5_H , b, c, d, a,     H_wec23, MD5S23);
450     MD5_STEP0(MD5_H , a, b, c, d,     H_w1c24, MD5S20);
451     MD5_STEP0(MD5_H , d, a, b, c,     H_w4c25, MD5S21);
452     MD5_STEP0(MD5_H , c, d, a, b,     H_w7c26, MD5S22);
453     MD5_STEP0(MD5_H , b, c, d, a,     H_wac27, MD5S23);
454     MD5_STEP0(MD5_H , a, b, c, d,     H_wdc28, MD5S20);
455     MD5_STEP (MD5_H , d, a, b, c, w0, H_w0c29, MD5S21);
456     MD5_STEP0(MD5_H , c, d, a, b,     H_w3c2a, MD5S22);
457     MD5_STEP0(MD5_H , b, c, d, a,     H_w6c2b, MD5S23);
458     MD5_STEP0(MD5_H , a, b, c, d,     H_w9c2c, MD5S20);
459     MD5_STEP0(MD5_H , d, a, b, c,     H_wcc2d, MD5S21);
460     MD5_STEP0(MD5_H , c, d, a, b,     H_wfc2e, MD5S22);
461     MD5_STEP0(MD5_H , b, c, d, a,     H_w2c2f, MD5S23);
462
463     MD5_STEP (MD5_I , a, b, c, d, w0, I_w0c30, MD5S30);
464     MD5_STEP0(MD5_I , d, a, b, c,     I_w7c31, MD5S31);
465     MD5_STEP0(MD5_I , c, d, a, b,     I_wec32, MD5S32);
466     MD5_STEP0(MD5_I , b, c, d, a,     I_w5c33, MD5S33);
467     MD5_STEP0(MD5_I , a, b, c, d,     I_wcc34, MD5S30);
468     MD5_STEP0(MD5_I , d, a, b, c,     I_w3c35, MD5S31);
469     MD5_STEP0(MD5_I , c, d, a, b,     I_wac36, MD5S32);
470     MD5_STEP0(MD5_I , b, c, d, a,     I_w1c37, MD5S33);
471     MD5_STEP0(MD5_I , a, b, c, d,     I_w8c38, MD5S30);
472     MD5_STEP0(MD5_I , d, a, b, c,     I_wfc39, MD5S31);
473     MD5_STEP0(MD5_I , c, d, a, b,     I_w6c3a, MD5S32);
474     MD5_STEP0(MD5_I , b, c, d, a,     I_wdc3b, MD5S33);
475     MD5_STEP0(MD5_I , a, b, c, d,     I_w4c3c, MD5S30);
476
477     if (MATCHES_NONE_VS ((a & 0x00ffffff), search[0])) continue;
478
479     MD5_STEP0(MD5_I , d, a, b, c,     I_wbc3d, MD5S31);
480     MD5_STEP0(MD5_I , c, d, a, b,     I_w2c3e, MD5S32);
481     MD5_STEP0(MD5_I , b, c, d, a,     I_w9c3f, MD5S33);
482
483     a &= 0x00ffffff;
484     d &= 0x00ffffff;
485     c &= 0x00ffffff;
486     b &= 0x00ffffff;
487
488     COMPARE_S_SIMD (a, d, c, b);
489   }
490 }
491
492 __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)
493 {
494   /**
495    * base
496    */
497
498   const u32 gid = get_global_id (0);
499
500   if (gid >= gid_max) return;
501
502   u32 w[16];
503
504   w[ 0] = pws[gid].i[ 0];
505   w[ 1] = pws[gid].i[ 1];
506   w[ 2] = pws[gid].i[ 2];
507   w[ 3] = pws[gid].i[ 3];
508   w[ 4] = 0;
509   w[ 5] = 0;
510   w[ 6] = 0;
511   w[ 7] = 0;
512   w[ 8] = 0;
513   w[ 9] = 0;
514   w[10] = 0;
515   w[11] = 0;
516   w[12] = 0;
517   w[13] = 0;
518   w[14] = 0;
519   w[15] = 0;
520
521   const u32 pw_len = pws[gid].pw_len;
522
523   /**
524    * main
525    */
526
527   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);
528 }
529
530 __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)
531 {
532 }
533
534 __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)
535 {
536 }
537
538 __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)
539 {
540   /**
541    * base
542    */
543
544   const u32 gid = get_global_id (0);
545
546   if (gid >= gid_max) return;
547
548   u32 w[16];
549
550   w[ 0] = pws[gid].i[ 0];
551   w[ 1] = pws[gid].i[ 1];
552   w[ 2] = pws[gid].i[ 2];
553   w[ 3] = pws[gid].i[ 3];
554   w[ 4] = 0;
555   w[ 5] = 0;
556   w[ 6] = 0;
557   w[ 7] = 0;
558   w[ 8] = 0;
559   w[ 9] = 0;
560   w[10] = 0;
561   w[11] = 0;
562   w[12] = 0;
563   w[13] = 0;
564   w[14] = 0;
565   w[15] = 0;
566
567   const u32 pw_len = pws[gid].pw_len;
568
569   /**
570    * main
571    */
572
573   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);
574 }
575
576 __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)
577 {
578 }
579
580 __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)
581 {
582 }