Upgrade kernel to support dynamic local work sizes
[hashcat.git] / OpenCL / m05100_a0.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5H_
7
8 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #define DGST_R0 0
12 #define DGST_R1 1
13 #define DGST_R2 2
14 #define DGST_R3 3
15
16 #include "include/kernel_functions.c"
17 #include "OpenCL/types_ocl.c"
18 #include "OpenCL/common.c"
19 #include "include/rp_kernel.h"
20 #include "OpenCL/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 m05100_m04 (__global pw_t *pws, __global kernel_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   u32 pw_buf1[4];
49
50   pw_buf1[0] = pws[gid].i[ 4];
51   pw_buf1[1] = pws[gid].i[ 5];
52   pw_buf1[2] = pws[gid].i[ 6];
53   pw_buf1[3] = pws[gid].i[ 7];
54
55   const u32 pw_len = pws[gid].pw_len;
56
57   /**
58    * loop
59    */
60
61   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
62   {
63     u32 w0[4];
64
65     w0[0] = pw_buf0[0];
66     w0[1] = pw_buf0[1];
67     w0[2] = pw_buf0[2];
68     w0[3] = pw_buf0[3];
69
70     u32 w1[4];
71
72     w1[0] = pw_buf1[0];
73     w1[1] = pw_buf1[1];
74     w1[2] = pw_buf1[2];
75     w1[3] = pw_buf1[3];
76
77     u32 w2[4];
78
79     w2[0] = 0;
80     w2[1] = 0;
81     w2[2] = 0;
82     w2[3] = 0;
83
84     u32 w3[4];
85
86     w3[0] = 0;
87     w3[1] = 0;
88     w3[2] = 0;
89     w3[3] = 0;
90
91     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
92
93     append_0x80_2x4 (w0, w1, out_len);
94
95     w3[2] = out_len * 8;
96
97     u32 a = MD5M_A;
98     u32 b = MD5M_B;
99     u32 c = MD5M_C;
100     u32 d = MD5M_D;
101
102     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
103     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
104     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
105     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
106     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
107     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
108     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
109     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
110     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
111     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
112     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
113     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
114     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
115     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
116     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
117     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
118
119     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
120     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
121     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
122     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
123     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
124     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
125     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
126     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
127     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
128     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
129     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
130     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
131     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
132     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
133     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
134     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
135
136     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
137     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
138     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
139     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
140     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
141     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
142     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
143     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
144     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
145     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
146     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
147     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
148     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
149     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
150     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
151     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
152
153     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
154     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
155     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
156     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
157     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
158     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
159     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
160     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
161     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
162     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
163     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
164     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
165     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
166     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
167     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
168     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
169
170     a += MD5M_A;
171     b += MD5M_B;
172     c += MD5M_C;
173     d += MD5M_D;
174
175     {
176       const u32 r0 = a;
177       const u32 r1 = b;
178       const u32 r2 = 0;
179       const u32 r3 = 0;
180
181       #include COMPARE_M
182     }
183
184     {
185       const u32 r0 = b;
186       const u32 r1 = c;
187       const u32 r2 = 0;
188       const u32 r3 = 0;
189
190       #include COMPARE_M
191     }
192
193     {
194       const u32 r0 = c;
195       const u32 r1 = d;
196       const u32 r2 = 0;
197       const u32 r3 = 0;
198
199       #include COMPARE_M
200     }
201   }
202 }
203
204 __kernel void m05100_m08 (__global pw_t *pws, __global kernel_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
205 {
206 }
207
208 __kernel void m05100_m16 (__global pw_t *pws, __global kernel_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
209 {
210 }
211
212 __kernel void m05100_s04 (__global pw_t *pws, __global kernel_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)
213 {
214   /**
215    * modifier
216    */
217
218   const u32 lid = get_local_id (0);
219
220   /**
221    * base
222    */
223
224   const u32 gid = get_global_id (0);
225
226   if (gid >= gid_max) return;
227
228   u32 pw_buf0[4];
229
230   pw_buf0[0] = pws[gid].i[ 0];
231   pw_buf0[1] = pws[gid].i[ 1];
232   pw_buf0[2] = pws[gid].i[ 2];
233   pw_buf0[3] = pws[gid].i[ 3];
234
235   u32 pw_buf1[4];
236
237   pw_buf1[0] = pws[gid].i[ 4];
238   pw_buf1[1] = pws[gid].i[ 5];
239   pw_buf1[2] = pws[gid].i[ 6];
240   pw_buf1[3] = pws[gid].i[ 7];
241
242   const u32 pw_len = pws[gid].pw_len;
243
244   /**
245    * digest
246    */
247
248   const u32 search[4] =
249   {
250     digests_buf[digests_offset].digest_buf[DGST_R0],
251     digests_buf[digests_offset].digest_buf[DGST_R1],
252     digests_buf[digests_offset].digest_buf[DGST_R2],
253     digests_buf[digests_offset].digest_buf[DGST_R3]
254   };
255
256   /**
257    * loop
258    */
259
260   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
261   {
262     u32 w0[4];
263
264     w0[0] = pw_buf0[0];
265     w0[1] = pw_buf0[1];
266     w0[2] = pw_buf0[2];
267     w0[3] = pw_buf0[3];
268
269     u32 w1[4];
270
271     w1[0] = pw_buf1[0];
272     w1[1] = pw_buf1[1];
273     w1[2] = pw_buf1[2];
274     w1[3] = pw_buf1[3];
275
276     u32 w2[4];
277
278     w2[0] = 0;
279     w2[1] = 0;
280     w2[2] = 0;
281     w2[3] = 0;
282
283     u32 w3[4];
284
285     w3[0] = 0;
286     w3[1] = 0;
287     w3[2] = 0;
288     w3[3] = 0;
289
290     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
291
292     append_0x80_2x4 (w0, w1, out_len);
293
294     w3[2] = out_len * 8;
295
296     u32 a = MD5M_A;
297     u32 b = MD5M_B;
298     u32 c = MD5M_C;
299     u32 d = MD5M_D;
300
301     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
302     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
303     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
304     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
305     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
306     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
307     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
308     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
309     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
310     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
311     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
312     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
313     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
314     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
315     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
316     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
317
318     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
319     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
320     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
321     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
322     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
323     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
324     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
325     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
326     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
327     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
328     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
329     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
330     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
331     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
332     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
333     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
334
335     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
336     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
337     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
338     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
339     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
340     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
341     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
342     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
343     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
344     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
345     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
346     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
347     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
348     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
349     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
350     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
351
352     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
353     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
354     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
355     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
356     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
357     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
358     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
359     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
360     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
361     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
362     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
363     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
364     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
365     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
366     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
367     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
368
369     a += MD5M_A;
370     b += MD5M_B;
371     c += MD5M_C;
372     d += MD5M_D;
373
374     {
375       const u32 r0 = a;
376       const u32 r1 = b;
377       const u32 r2 = 0;
378       const u32 r3 = 0;
379
380       #include COMPARE_S
381     }
382
383     {
384       const u32 r0 = b;
385       const u32 r1 = c;
386       const u32 r2 = 0;
387       const u32 r3 = 0;
388
389       #include COMPARE_S
390     }
391
392     {
393       const u32 r0 = c;
394       const u32 r1 = d;
395       const u32 r2 = 0;
396       const u32 r3 = 0;
397
398       #include COMPARE_S
399     }
400   }
401 }
402
403 __kernel void m05100_s08 (__global pw_t *pws, __global kernel_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
404 {
405 }
406
407 __kernel void m05100_s16 (__global pw_t *pws, __global kernel_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
408 {
409 }