Replace the substring GPU to a more appropriate "device" or "kernel" substring depend...
[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 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #define DGST_R0 0
12 #define DGST_R1 3
13 #define DGST_R2 2
14 #define DGST_R3 1
15
16 #include "include/kernel_functions.c"
17 #include "OpenCL/types_ocl.c"
18 #include "OpenCL/common.c"
19
20 #define COMPARE_S "OpenCL/check_single_comp4.c"
21 #define COMPARE_M "OpenCL/check_multi_comp4.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 u32 * 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 (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 (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++)
163   {
164     const u32 w0r = words_buf_r[il_pos];
165
166     const u32 w0 = w0l | w0r;
167
168     u32 tmp2;
169
170     u32 a = MD5M_A;
171     u32 b = MD5M_B;
172     u32 c = MD5M_C;
173     u32 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     const u32 r0 = a;
249     const u32 r1 = d;
250     const u32 r2 = c;
251     const u32 r3 = b;
252
253     #include COMPARE_M
254   }
255 }
256
257 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 u32 * 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)
258 {
259   /**
260    * modifier
261    */
262
263   const u32 gid = get_global_id (0);
264   const u32 lid = get_local_id (0);
265
266   /**
267    * salt
268    */
269
270   u32 salt_buf0[4];
271
272   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
273   salt_buf0[1] = 0;
274   salt_buf0[2] = 0;
275   salt_buf0[3] = 0;
276
277   u32 salt_buf1[4];
278
279   salt_buf1[0] = 0;
280   salt_buf1[1] = 0;
281   salt_buf1[2] = 0;
282   salt_buf1[3] = 0;
283
284   u32 salt_buf2[4];
285
286   salt_buf2[0] = 0;
287   salt_buf2[1] = 0;
288   salt_buf2[2] = 0;
289   salt_buf2[3] = 0;
290
291   u32 salt_buf3[4];
292
293   salt_buf3[0] = 0;
294   salt_buf3[1] = 0;
295   salt_buf3[2] = 0;
296   salt_buf3[3] = 0;
297
298   switch_buffer_by_offset (salt_buf0, salt_buf1, salt_buf2, salt_buf3, pw_len);
299
300   w[0] |= salt_buf0[0];
301   w[1] |= salt_buf0[1];
302   w[2] |= salt_buf0[2];
303   w[3] |= salt_buf0[3];
304
305   const u32 salt_len = (salt_bufs[salt_pos].salt_len < 4) ? salt_bufs[salt_pos].salt_len : 4;
306
307   const u32 pw_salt_len = pw_len + salt_len;
308
309   truncate_block (w, pw_salt_len);
310
311   /**
312    * algorithm specific
313    */
314
315   w[ 4] = 0x80;
316   w[14] = 16 * 8;
317
318   /**
319    * base
320    */
321
322   const u32 F_w0c00 =    0  + MD5C00;
323   const u32 F_w1c01 = w[ 1] + MD5C01;
324   const u32 F_w2c02 = w[ 2] + MD5C02;
325   const u32 F_w3c03 = w[ 3] + MD5C03;
326   const u32 F_w4c04 = w[ 4] + MD5C04;
327   const u32 F_w5c05 = w[ 5] + MD5C05;
328   const u32 F_w6c06 = w[ 6] + MD5C06;
329   const u32 F_w7c07 = w[ 7] + MD5C07;
330   const u32 F_w8c08 = w[ 8] + MD5C08;
331   const u32 F_w9c09 = w[ 9] + MD5C09;
332   const u32 F_wac0a = w[10] + MD5C0a;
333   const u32 F_wbc0b = w[11] + MD5C0b;
334   const u32 F_wcc0c = w[12] + MD5C0c;
335   const u32 F_wdc0d = w[13] + MD5C0d;
336   const u32 F_wec0e = w[14] + MD5C0e;
337   const u32 F_wfc0f = w[15] + MD5C0f;
338
339   const u32 G_w1c10 = w[ 1] + MD5C10;
340   const u32 G_w6c11 = w[ 6] + MD5C11;
341   const u32 G_wbc12 = w[11] + MD5C12;
342   const u32 G_w0c13 =    0  + MD5C13;
343   const u32 G_w5c14 = w[ 5] + MD5C14;
344   const u32 G_wac15 = w[10] + MD5C15;
345   const u32 G_wfc16 = w[15] + MD5C16;
346   const u32 G_w4c17 = w[ 4] + MD5C17;
347   const u32 G_w9c18 = w[ 9] + MD5C18;
348   const u32 G_wec19 = w[14] + MD5C19;
349   const u32 G_w3c1a = w[ 3] + MD5C1a;
350   const u32 G_w8c1b = w[ 8] + MD5C1b;
351   const u32 G_wdc1c = w[13] + MD5C1c;
352   const u32 G_w2c1d = w[ 2] + MD5C1d;
353   const u32 G_w7c1e = w[ 7] + MD5C1e;
354   const u32 G_wcc1f = w[12] + MD5C1f;
355
356   const u32 H_w5c20 = w[ 5] + MD5C20;
357   const u32 H_w8c21 = w[ 8] + MD5C21;
358   const u32 H_wbc22 = w[11] + MD5C22;
359   const u32 H_wec23 = w[14] + MD5C23;
360   const u32 H_w1c24 = w[ 1] + MD5C24;
361   const u32 H_w4c25 = w[ 4] + MD5C25;
362   const u32 H_w7c26 = w[ 7] + MD5C26;
363   const u32 H_wac27 = w[10] + MD5C27;
364   const u32 H_wdc28 = w[13] + MD5C28;
365   const u32 H_w0c29 =    0  + MD5C29;
366   const u32 H_w3c2a = w[ 3] + MD5C2a;
367   const u32 H_w6c2b = w[ 6] + MD5C2b;
368   const u32 H_w9c2c = w[ 9] + MD5C2c;
369   const u32 H_wcc2d = w[12] + MD5C2d;
370   const u32 H_wfc2e = w[15] + MD5C2e;
371   const u32 H_w2c2f = w[ 2] + MD5C2f;
372
373   const u32 I_w0c30 =    0  + MD5C30;
374   const u32 I_w7c31 = w[ 7] + MD5C31;
375   const u32 I_wec32 = w[14] + MD5C32;
376   const u32 I_w5c33 = w[ 5] + MD5C33;
377   const u32 I_wcc34 = w[12] + MD5C34;
378   const u32 I_w3c35 = w[ 3] + MD5C35;
379   const u32 I_wac36 = w[10] + MD5C36;
380   const u32 I_w1c37 = w[ 1] + MD5C37;
381   const u32 I_w8c38 = w[ 8] + MD5C38;
382   const u32 I_wfc39 = w[15] + MD5C39;
383   const u32 I_w6c3a = w[ 6] + MD5C3a;
384   const u32 I_wdc3b = w[13] + MD5C3b;
385   const u32 I_w4c3c = w[ 4] + MD5C3c;
386   const u32 I_wbc3d = w[11] + MD5C3d;
387   const u32 I_w2c3e = w[ 2] + MD5C3e;
388   const u32 I_w9c3f = w[ 9] + MD5C3f;
389
390   /**
391    * digest
392    */
393
394   const u32 search[4] =
395   {
396     digests_buf[digests_offset].digest_buf[DGST_R0],
397     digests_buf[digests_offset].digest_buf[DGST_R1],
398     digests_buf[digests_offset].digest_buf[DGST_R2],
399     digests_buf[digests_offset].digest_buf[DGST_R3]
400   };
401
402   /**
403    * loop
404    */
405
406   u32 w0l = w[0];
407
408   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
409   {
410     const u32 w0r = words_buf_r[il_pos];
411
412     const u32 w0 = w0l | w0r;
413
414     u32 tmp2;
415
416     u32 a = MD5M_A;
417     u32 b = MD5M_B;
418     u32 c = MD5M_C;
419     u32 d = MD5M_D;
420
421     MD5_STEP (MD5_Fo, a, b, c, d, w0, F_w0c00, MD5S00);
422     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w1c01, MD5S01);
423     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w2c02, MD5S02);
424     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w3c03, MD5S03);
425     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w4c04, MD5S00);
426     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w5c05, MD5S01);
427     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w6c06, MD5S02);
428     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w7c07, MD5S03);
429     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w8c08, MD5S00);
430     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w9c09, MD5S01);
431     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wac0a, MD5S02);
432     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wbc0b, MD5S03);
433     MD5_STEP0(MD5_Fo, a, b, c, d,     F_wcc0c, MD5S00);
434     MD5_STEP0(MD5_Fo, d, a, b, c,     F_wdc0d, MD5S01);
435     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wec0e, MD5S02);
436     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wfc0f, MD5S03);
437
438     MD5_STEP0(MD5_Go, a, b, c, d,     G_w1c10, MD5S10);
439     MD5_STEP0(MD5_Go, d, a, b, c,     G_w6c11, MD5S11);
440     MD5_STEP0(MD5_Go, c, d, a, b,     G_wbc12, MD5S12);
441     MD5_STEP (MD5_Go, b, c, d, a, w0, G_w0c13, MD5S13);
442     MD5_STEP0(MD5_Go, a, b, c, d,     G_w5c14, MD5S10);
443     MD5_STEP0(MD5_Go, d, a, b, c,     G_wac15, MD5S11);
444     MD5_STEP0(MD5_Go, c, d, a, b,     G_wfc16, MD5S12);
445     MD5_STEP0(MD5_Go, b, c, d, a,     G_w4c17, MD5S13);
446     MD5_STEP0(MD5_Go, a, b, c, d,     G_w9c18, MD5S10);
447     MD5_STEP0(MD5_Go, d, a, b, c,     G_wec19, MD5S11);
448     MD5_STEP0(MD5_Go, c, d, a, b,     G_w3c1a, MD5S12);
449     MD5_STEP0(MD5_Go, b, c, d, a,     G_w8c1b, MD5S13);
450     MD5_STEP0(MD5_Go, a, b, c, d,     G_wdc1c, MD5S10);
451     MD5_STEP0(MD5_Go, d, a, b, c,     G_w2c1d, MD5S11);
452     MD5_STEP0(MD5_Go, c, d, a, b,     G_w7c1e, MD5S12);
453     MD5_STEP0(MD5_Go, b, c, d, a,     G_wcc1f, MD5S13);
454
455     MD5_STEP0(MD5_H1, a, b, c, d,     H_w5c20, MD5S20);
456     MD5_STEP0(MD5_H2, d, a, b, c,     H_w8c21, MD5S21);
457     MD5_STEP0(MD5_H1, c, d, a, b,     H_wbc22, MD5S22);
458     MD5_STEP0(MD5_H2, b, c, d, a,     H_wec23, MD5S23);
459     MD5_STEP0(MD5_H1, a, b, c, d,     H_w1c24, MD5S20);
460     MD5_STEP0(MD5_H2, d, a, b, c,     H_w4c25, MD5S21);
461     MD5_STEP0(MD5_H1, c, d, a, b,     H_w7c26, MD5S22);
462     MD5_STEP0(MD5_H2, b, c, d, a,     H_wac27, MD5S23);
463     MD5_STEP0(MD5_H1, a, b, c, d,     H_wdc28, MD5S20);
464     MD5_STEP (MD5_H2, d, a, b, c, w0, H_w0c29, MD5S21);
465     MD5_STEP0(MD5_H1, c, d, a, b,     H_w3c2a, MD5S22);
466     MD5_STEP0(MD5_H2, b, c, d, a,     H_w6c2b, MD5S23);
467     MD5_STEP0(MD5_H1, a, b, c, d,     H_w9c2c, MD5S20);
468     MD5_STEP0(MD5_H2, d, a, b, c,     H_wcc2d, MD5S21);
469     MD5_STEP0(MD5_H1, c, d, a, b,     H_wfc2e, MD5S22);
470     MD5_STEP0(MD5_H2, b, c, d, a,     H_w2c2f, MD5S23);
471
472     MD5_STEP (MD5_I , a, b, c, d, w0, I_w0c30, MD5S30);
473     MD5_STEP0(MD5_I , d, a, b, c,     I_w7c31, MD5S31);
474     MD5_STEP0(MD5_I , c, d, a, b,     I_wec32, MD5S32);
475     MD5_STEP0(MD5_I , b, c, d, a,     I_w5c33, MD5S33);
476     MD5_STEP0(MD5_I , a, b, c, d,     I_wcc34, MD5S30);
477     MD5_STEP0(MD5_I , d, a, b, c,     I_w3c35, MD5S31);
478     MD5_STEP0(MD5_I , c, d, a, b,     I_wac36, MD5S32);
479     MD5_STEP0(MD5_I , b, c, d, a,     I_w1c37, MD5S33);
480     MD5_STEP0(MD5_I , a, b, c, d,     I_w8c38, MD5S30);
481     MD5_STEP0(MD5_I , d, a, b, c,     I_wfc39, MD5S31);
482     MD5_STEP0(MD5_I , c, d, a, b,     I_w6c3a, MD5S32);
483     MD5_STEP0(MD5_I , b, c, d, a,     I_wdc3b, MD5S33);
484     MD5_STEP0(MD5_I , a, b, c, d,     I_w4c3c, MD5S30);
485
486     bool q_cond = allx ((a & 0x00ffffff) != search[0]);
487
488     if (q_cond) continue;
489
490     MD5_STEP0(MD5_I , d, a, b, c,     I_wbc3d, MD5S31);
491     MD5_STEP0(MD5_I , c, d, a, b,     I_w2c3e, MD5S32);
492     MD5_STEP0(MD5_I , b, c, d, a,     I_w9c3f, MD5S33);
493
494     a &= 0x00ffffff;
495     d &= 0x00ffffff;
496     c &= 0x00ffffff;
497     b &= 0x00ffffff;
498
499     const u32 r0 = a;
500     const u32 r1 = d;
501     const u32 r2 = c;
502     const u32 r3 = b;
503
504     #include COMPARE_S
505   }
506 }
507
508 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02410_m04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32 * 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)
509 {
510   /**
511    * base
512    */
513
514   const u32 gid = get_global_id (0);
515
516   if (gid >= gid_max) return;
517
518   u32 w[16];
519
520   w[ 0] = pws[gid].i[ 0];
521   w[ 1] = pws[gid].i[ 1];
522   w[ 2] = pws[gid].i[ 2];
523   w[ 3] = pws[gid].i[ 3];
524   w[ 4] = 0;
525   w[ 5] = 0;
526   w[ 6] = 0;
527   w[ 7] = 0;
528   w[ 8] = 0;
529   w[ 9] = 0;
530   w[10] = 0;
531   w[11] = 0;
532   w[12] = 0;
533   w[13] = 0;
534   w[14] = 0;
535   w[15] = 0;
536
537   const u32 pw_len = pws[gid].pw_len;
538
539   /**
540    * main
541    */
542
543   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);
544 }
545
546 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02410_m08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32 * 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)
547 {
548 }
549
550 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02410_m16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32 * 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)
551 {
552 }
553
554 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02410_s04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32 * 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)
555 {
556   /**
557    * base
558    */
559
560   const u32 gid = get_global_id (0);
561
562   if (gid >= gid_max) return;
563
564   u32 w[16];
565
566   w[ 0] = pws[gid].i[ 0];
567   w[ 1] = pws[gid].i[ 1];
568   w[ 2] = pws[gid].i[ 2];
569   w[ 3] = pws[gid].i[ 3];
570   w[ 4] = 0;
571   w[ 5] = 0;
572   w[ 6] = 0;
573   w[ 7] = 0;
574   w[ 8] = 0;
575   w[ 9] = 0;
576   w[10] = 0;
577   w[11] = 0;
578   w[12] = 0;
579   w[13] = 0;
580   w[14] = 0;
581   w[15] = 0;
582
583   const u32 pw_len = pws[gid].pw_len;
584
585   /**
586    * main
587    */
588
589   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);
590 }
591
592 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02410_s08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32 * 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)
593 {
594 }
595
596 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02410_s16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __constant u32 * 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)
597 {
598 }