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