Fixed two major problems
[hashcat.git] / OpenCL / m10420_a0.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 1
15 #define DGST_R2 2
16 #define DGST_R3 3
17
18 #include "include/kernel_functions.c"
19 #include "OpenCL/types_ocl.c"
20 #include "OpenCL/common.c"
21 #include "include/rp_kernel.h"
22 #include "OpenCL/rp.c"
23 #include "OpenCL/simd.c"
24
25 __constant u32 padding[8] =
26 {
27   0x5e4ebf28,
28   0x418a754e,
29   0x564e0064,
30   0x0801faff,
31   0xb6002e2e,
32   0x803e68d0,
33   0xfea90c2f,
34   0x7a695364
35 };
36
37 static void md5_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u32x digest[4])
38 {
39   u32x a = digest[0];
40   u32x b = digest[1];
41   u32x c = digest[2];
42   u32x d = digest[3];
43
44   u32x w0_t = w0[0];
45   u32x w1_t = w0[1];
46   u32x w2_t = w0[2];
47   u32x w3_t = w0[3];
48   u32x w4_t = w1[0];
49   u32x w5_t = w1[1];
50   u32x w6_t = w1[2];
51   u32x w7_t = w1[3];
52   u32x w8_t = w2[0];
53   u32x w9_t = w2[1];
54   u32x wa_t = w2[2];
55   u32x wb_t = w2[3];
56   u32x wc_t = w3[0];
57   u32x wd_t = w3[1];
58   u32x we_t = w3[2];
59   u32x wf_t = w3[3];
60
61   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
62   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
63   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
64   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
65   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
66   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
67   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
68   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
69   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
70   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
71   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
72   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
73   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
74   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
75   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
76   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
77
78   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
79   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
80   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
81   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
82   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
83   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
84   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
85   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
86   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
87   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
88   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
89   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
90   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
91   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
92   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
93   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
94
95   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
96   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
97   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
98   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
99   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
100   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
101   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
102   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
103   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
104   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
105   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
106   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
107   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
108   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
109   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
110   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
111
112   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
113   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
114   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
115   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
116   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
117   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
118   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
119   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
120   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
121   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
122   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
123   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
124   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
125   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
126   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
127   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
128
129   digest[0] += a;
130   digest[1] += b;
131   digest[2] += c;
132   digest[3] += d;
133 }
134
135 __kernel void m10420_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 pdf_t *pdf_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
136 {
137   /**
138    * modifier
139    */
140
141   const u32 lid = get_local_id (0);
142
143   /**
144    * base
145    */
146
147   const u32 gid = get_global_id (0);
148
149   if (gid >= gid_max) return;
150
151   u32 pw_buf0[4];
152
153   pw_buf0[0] = pws[gid].i[ 0];
154   pw_buf0[1] = pws[gid].i[ 1];
155   pw_buf0[2] = pws[gid].i[ 2];
156   pw_buf0[3] = pws[gid].i[ 3];
157
158   u32 pw_buf1[4];
159
160   pw_buf1[0] = pws[gid].i[ 4];
161   pw_buf1[1] = pws[gid].i[ 5];
162   pw_buf1[2] = pws[gid].i[ 6];
163   pw_buf1[3] = pws[gid].i[ 7];
164
165   const u32 pw_len = pws[gid].pw_len;
166
167   /**
168    * U_buf
169    */
170
171   u32 o_buf[8];
172
173   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
174   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
175   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
176   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
177   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
178   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
179   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
180   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
181
182   u32 P = pdf_bufs[salt_pos].P;
183
184   u32 id_buf[4];
185
186   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
187   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
188   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
189   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
190
191   /**
192    * loop
193    */
194
195   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
196   {
197     u32x w0[4] = { 0 };
198     u32x w1[4] = { 0 };
199     u32x w2[4] = { 0 };
200     u32x w3[4] = { 0 };
201
202     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
203
204     append_0x80_2x4_VV (w0, w1, out_len);
205
206     u32x w0_t[4];
207     u32x w1_t[4];
208     u32x w2_t[4];
209     u32x w3_t[4];
210
211     // max length supported by pdf11 is 32
212
213     w0_t[0] = padding[0];
214     w0_t[1] = padding[1];
215     w0_t[2] = padding[2];
216     w0_t[3] = padding[3];
217     w1_t[0] = padding[4];
218     w1_t[1] = padding[5];
219     w1_t[2] = padding[6];
220     w1_t[3] = padding[7];
221     w2_t[0] = 0;
222     w2_t[1] = 0;
223     w2_t[2] = 0;
224     w2_t[3] = 0;
225     w3_t[0] = 0;
226     w3_t[1] = 0;
227     w3_t[2] = 0;
228     w3_t[3] = 0;
229
230     switch_buffer_by_offset_le_VV (w0_t, w1_t, w2_t, w3_t, out_len);
231
232     // add password
233     // truncate at 32 is wanted, not a bug!
234     // add o_buf
235
236     w0_t[0] |= w0[0];
237     w0_t[1] |= w0[1];
238     w0_t[2] |= w0[2];
239     w0_t[3] |= w0[3];
240     w1_t[0] |= w1[0];
241     w1_t[1] |= w1[1];
242     w1_t[2] |= w1[2];
243     w1_t[3] |= w1[3];
244     w2_t[0]  = o_buf[0];
245     w2_t[1]  = o_buf[1];
246     w2_t[2]  = o_buf[2];
247     w2_t[3]  = o_buf[3];
248     w3_t[0]  = o_buf[4];
249     w3_t[1]  = o_buf[5];
250     w3_t[2]  = o_buf[6];
251     w3_t[3]  = o_buf[7];
252
253     u32x digest[4];
254
255     digest[0] = MD5M_A;
256     digest[1] = MD5M_B;
257     digest[2] = MD5M_C;
258     digest[3] = MD5M_D;
259
260     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
261
262     w0_t[0] = P;
263     w0_t[1] = id_buf[0];
264     w0_t[2] = id_buf[1];
265     w0_t[3] = id_buf[2];
266     w1_t[0] = id_buf[3];
267     w1_t[1] = 0x80;
268     w1_t[2] = 0;
269     w1_t[3] = 0;
270     w2_t[0] = 0;
271     w2_t[1] = 0;
272     w2_t[2] = 0;
273     w2_t[3] = 0;
274     w3_t[0] = 0;
275     w3_t[1] = 0;
276     w3_t[2] = 84 * 8;
277     w3_t[3] = 0;
278
279     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
280
281     u32x a = digest[0];
282     u32x b = digest[1] & 0xff;
283     u32x c = 0;
284     u32x d = 0;
285
286     COMPARE_M_SIMD (a, b, c, d);
287   }
288 }
289
290 __kernel void m10420_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 pdf_t *pdf_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)
291 {
292 }
293
294 __kernel void m10420_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 pdf_t *pdf_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
295 {
296 }
297
298 __kernel void m10420_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 pdf_t *pdf_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
299 {
300   /**
301    * modifier
302    */
303
304   const u32 lid = get_local_id (0);
305
306   /**
307    * base
308    */
309
310   const u32 gid = get_global_id (0);
311
312   if (gid >= gid_max) return;
313
314   u32 pw_buf0[4];
315
316   pw_buf0[0] = pws[gid].i[ 0];
317   pw_buf0[1] = pws[gid].i[ 1];
318   pw_buf0[2] = pws[gid].i[ 2];
319   pw_buf0[3] = pws[gid].i[ 3];
320
321   u32 pw_buf1[4];
322
323   pw_buf1[0] = pws[gid].i[ 4];
324   pw_buf1[1] = pws[gid].i[ 5];
325   pw_buf1[2] = pws[gid].i[ 6];
326   pw_buf1[3] = pws[gid].i[ 7];
327
328   const u32 pw_len = pws[gid].pw_len;
329
330   /**
331    * digest
332    */
333
334   const u32 search[4] =
335   {
336     digests_buf[digests_offset].digest_buf[DGST_R0],
337     digests_buf[digests_offset].digest_buf[DGST_R1],
338     digests_buf[digests_offset].digest_buf[DGST_R2],
339     digests_buf[digests_offset].digest_buf[DGST_R3]
340   };
341
342   /**
343    * U_buf
344    */
345
346   u32 o_buf[8];
347
348   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
349   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
350   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
351   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
352   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
353   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
354   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
355   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
356
357   u32 P = pdf_bufs[salt_pos].P;
358
359   u32 id_buf[4];
360
361   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
362   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
363   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
364   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
365
366   /**
367    * loop
368    */
369
370   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
371   {
372     u32x w0[4] = { 0 };
373     u32x w1[4] = { 0 };
374     u32x w2[4] = { 0 };
375     u32x w3[4] = { 0 };
376
377     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
378
379     append_0x80_2x4_VV (w0, w1, out_len);
380
381     u32x w0_t[4];
382     u32x w1_t[4];
383     u32x w2_t[4];
384     u32x w3_t[4];
385
386     // max length supported by pdf11 is 32
387
388     w0_t[0] = padding[0];
389     w0_t[1] = padding[1];
390     w0_t[2] = padding[2];
391     w0_t[3] = padding[3];
392     w1_t[0] = padding[4];
393     w1_t[1] = padding[5];
394     w1_t[2] = padding[6];
395     w1_t[3] = padding[7];
396     w2_t[0] = 0;
397     w2_t[1] = 0;
398     w2_t[2] = 0;
399     w2_t[3] = 0;
400     w3_t[0] = 0;
401     w3_t[1] = 0;
402     w3_t[2] = 0;
403     w3_t[3] = 0;
404
405     switch_buffer_by_offset_le_VV (w0_t, w1_t, w2_t, w3_t, out_len);
406
407     // add password
408     // truncate at 32 is wanted, not a bug!
409     // add o_buf
410
411     w0_t[0] |= w0[0];
412     w0_t[1] |= w0[1];
413     w0_t[2] |= w0[2];
414     w0_t[3] |= w0[3];
415     w1_t[0] |= w1[0];
416     w1_t[1] |= w1[1];
417     w1_t[2] |= w1[2];
418     w1_t[3] |= w1[3];
419     w2_t[0]  = o_buf[0];
420     w2_t[1]  = o_buf[1];
421     w2_t[2]  = o_buf[2];
422     w2_t[3]  = o_buf[3];
423     w3_t[0]  = o_buf[4];
424     w3_t[1]  = o_buf[5];
425     w3_t[2]  = o_buf[6];
426     w3_t[3]  = o_buf[7];
427
428     u32x digest[4];
429
430     digest[0] = MD5M_A;
431     digest[1] = MD5M_B;
432     digest[2] = MD5M_C;
433     digest[3] = MD5M_D;
434
435     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
436
437     w0_t[0] = P;
438     w0_t[1] = id_buf[0];
439     w0_t[2] = id_buf[1];
440     w0_t[3] = id_buf[2];
441     w1_t[0] = id_buf[3];
442     w1_t[1] = 0x80;
443     w1_t[2] = 0;
444     w1_t[3] = 0;
445     w2_t[0] = 0;
446     w2_t[1] = 0;
447     w2_t[2] = 0;
448     w2_t[3] = 0;
449     w3_t[0] = 0;
450     w3_t[1] = 0;
451     w3_t[2] = 84 * 8;
452     w3_t[3] = 0;
453
454     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
455
456     u32x a = digest[0];
457     u32x b = digest[1] & 0xff;
458     u32x c = 0;
459     u32x d = 0;
460
461     COMPARE_S_SIMD (a, b, c, d);
462   }
463 }
464
465 __kernel void m10420_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 pdf_t *pdf_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
466 {
467 }
468
469 __kernel void m10420_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 pdf_t *pdf_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
470 {
471 }