Fix path to includes
[hashcat.git] / OpenCL / m02400_a0.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 #include "include/rp_gpu.h"
20 #include "rp.c"
21
22 #define COMPARE_S "OpenCL/check_single_comp4.c"
23 #define COMPARE_M "OpenCL/check_multi_comp4.c"
24
25 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_m04 (__global pw_t *pws, __global gpu_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
26 {
27   /**
28    * modifier
29    */
30
31   const u32 lid = get_local_id (0);
32
33   /**
34    * base
35    */
36
37   const u32 gid = get_global_id (0);
38
39   if (gid >= gid_max) return;
40
41   u32 pw_buf0[4];
42
43   pw_buf0[0] = pws[gid].i[ 0];
44   pw_buf0[1] = pws[gid].i[ 1];
45   pw_buf0[2] = pws[gid].i[ 2];
46   pw_buf0[3] = pws[gid].i[ 3];
47
48   const u32 pw_len = pws[gid].pw_len;
49
50   /**
51    * loop
52    */
53
54   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
55   {
56     u32 w0[4];
57
58     w0[0] = pw_buf0[0];
59     w0[1] = pw_buf0[1];
60     w0[2] = pw_buf0[2];
61     w0[3] = pw_buf0[3];
62
63     u32 w1[4];
64
65     w1[0] = 0;
66     w1[1] = 0;
67     w1[2] = 0;
68     w1[3] = 0;
69
70     u32 w2[4];
71
72     w2[0] = 0;
73     w2[1] = 0;
74     w2[2] = 0;
75     w2[3] = 0;
76
77     u32 w3[4];
78
79     w3[0] = 0;
80     w3[1] = 0;
81     w3[2] = 0;
82     w3[3] = 0;
83
84     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
85
86     truncate_block (w0, out_len);
87
88     w1[0] = 0x80;
89     w3[2] = 16 * 8;
90
91     u32 tmp2;
92
93     u32 a = MD5M_A;
94     u32 b = MD5M_B;
95     u32 c = MD5M_C;
96     u32 d = MD5M_D;
97
98     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
99     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
100     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
101     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
102     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
103     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
104     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
105     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
106     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
107     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
108     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
109     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
110     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
111     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
112     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
113     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
114
115     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
116     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
117     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
118     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
119     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
120     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
121     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
122     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
123     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
124     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
125     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
126     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
127     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
128     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
129     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
130     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
131
132     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
133     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
134     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
135     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
136     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
137     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
138     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
139     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
140     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
141     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
142     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
143     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
144     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
145     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
146     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
147     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
148
149     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
150     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
151     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
152     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
153     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
154     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
155     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
156     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
157     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
158     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
159     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
160     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
161     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
162     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
163     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
164     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
165
166     a &= 0x00ffffff;
167     d &= 0x00ffffff;
168     c &= 0x00ffffff;
169     b &= 0x00ffffff;
170
171     const u32 r0 = a;
172     const u32 r1 = d;
173     const u32 r2 = c;
174     const u32 r3 = b;
175
176     #include COMPARE_M
177   }
178 }
179
180 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_m08 (__global pw_t *pws, __global gpu_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
181 {
182 }
183
184 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_m16 (__global pw_t *pws, __global gpu_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
185 {
186 }
187
188 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_s04 (__global pw_t *pws, __global gpu_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
189 {
190   /**
191    * modifier
192    */
193
194   const u32 lid = get_local_id (0);
195
196   /**
197    * base
198    */
199
200   const u32 gid = get_global_id (0);
201
202   if (gid >= gid_max) return;
203
204   u32 pw_buf0[4];
205
206   pw_buf0[0] = pws[gid].i[ 0];
207   pw_buf0[1] = pws[gid].i[ 1];
208   pw_buf0[2] = pws[gid].i[ 2];
209   pw_buf0[3] = pws[gid].i[ 3];
210
211   const u32 pw_len = pws[gid].pw_len;
212
213   /**
214    * digest
215    */
216
217   const u32 search[4] =
218   {
219     digests_buf[digests_offset].digest_buf[DGST_R0],
220     digests_buf[digests_offset].digest_buf[DGST_R1],
221     digests_buf[digests_offset].digest_buf[DGST_R2],
222     digests_buf[digests_offset].digest_buf[DGST_R3]
223   };
224
225   /**
226    * loop
227    */
228
229   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
230   {
231     u32 w0[4];
232
233     w0[0] = pw_buf0[0];
234     w0[1] = pw_buf0[1];
235     w0[2] = pw_buf0[2];
236     w0[3] = pw_buf0[3];
237
238     u32 w1[4];
239
240     w1[0] = 0;
241     w1[1] = 0;
242     w1[2] = 0;
243     w1[3] = 0;
244
245     u32 w2[4];
246
247     w2[0] = 0;
248     w2[1] = 0;
249     w2[2] = 0;
250     w2[3] = 0;
251
252     u32 w3[4];
253
254     w3[0] = 0;
255     w3[1] = 0;
256     w3[2] = 0;
257     w3[3] = 0;
258
259     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
260
261     truncate_block (w0, out_len);
262
263     w1[0] = 0x80;
264     w3[2] = 16 * 8;
265
266     u32 tmp2;
267
268     u32 a = MD5M_A;
269     u32 b = MD5M_B;
270     u32 c = MD5M_C;
271     u32 d = MD5M_D;
272
273     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
274     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
275     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
276     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
277     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
278     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
279     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
280     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
281     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
282     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
283     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
284     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
285     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
286     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
287     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
288     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
289
290     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
291     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
292     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
293     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
294     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
295     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
296     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
297     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
298     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
299     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
300     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
301     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
302     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
303     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
304     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
305     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
306
307     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
308     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
309     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
310     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
311     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
312     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
313     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
314     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
315     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
316     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
317     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
318     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
319     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
320     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
321     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
322     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
323
324     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
325     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
326     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
327     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
328     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
329     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
330     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
331     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
332     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
333     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
334     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
335     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
336     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
337
338     bool q_cond = allx ((a & 0x00ffffff) != search[0]);
339
340     if (q_cond) continue;
341
342     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
343     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
344     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
345
346     a &= 0x00ffffff;
347     d &= 0x00ffffff;
348     c &= 0x00ffffff;
349     b &= 0x00ffffff;
350
351     const u32 r0 = a;
352     const u32 r1 = d;
353     const u32 r2 = c;
354     const u32 r3 = b;
355
356     #include COMPARE_S
357   }
358 }
359
360 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_s08 (__global pw_t *pws, __global gpu_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
361 {
362 }
363
364 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_s16 (__global pw_t *pws, __global gpu_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
365 {
366 }