f9d295b8a24efb538f18d0127e48404bd7ed7036
[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 "inc_hash_constants.h"
11 #include "inc_vendor.cl"
12
13 #define DGST_R0 0
14 #define DGST_R1 1
15 #define DGST_R2 2
16 #define DGST_R3 3
17
18 #include "inc_hash_functions.cl"
19 #include "inc_types.cl"
20 #include "inc_common.cl"
21 #include "inc_rp.h"
22 #include "inc_rp.cl"
23 #include "inc_simd.cl"
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 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   u32 pw_buf1[4];
153
154   pw_buf0[0] = pws[gid].i[ 0];
155   pw_buf0[1] = pws[gid].i[ 1];
156   pw_buf0[2] = pws[gid].i[ 2];
157   pw_buf0[3] = pws[gid].i[ 3];
158   pw_buf1[0] = pws[gid].i[ 4];
159   pw_buf1[1] = pws[gid].i[ 5];
160   pw_buf1[2] = pws[gid].i[ 6];
161   pw_buf1[3] = pws[gid].i[ 7];
162
163   const u32 pw_len = pws[gid].pw_len;
164
165   /**
166    * U_buf
167    */
168
169   u32 o_buf[8];
170
171   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
172   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
173   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
174   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
175   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
176   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
177   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
178   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
179
180   u32 P = pdf_bufs[salt_pos].P;
181
182   u32 id_buf[4];
183
184   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
185   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
186   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
187   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
188
189   /**
190    * loop
191    */
192
193   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
194   {
195     u32x w0[4] = { 0 };
196     u32x w1[4] = { 0 };
197     u32x w2[4] = { 0 };
198     u32x w3[4] = { 0 };
199
200     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
201
202     /**
203      * pdf
204      */
205
206     u32 p0[4];
207     u32 p1[4];
208     u32 p2[4];
209     u32 p3[4];
210
211     p0[0] = padding[0];
212     p0[1] = padding[1];
213     p0[2] = padding[2];
214     p0[3] = padding[3];
215     p1[0] = padding[4];
216     p1[1] = padding[5];
217     p1[2] = padding[6];
218     p1[3] = padding[7];
219     p2[0] = 0;
220     p2[1] = 0;
221     p2[2] = 0;
222     p2[3] = 0;
223     p3[0] = 0;
224     p3[1] = 0;
225     p3[2] = 0;
226     p3[3] = 0;
227
228     switch_buffer_by_offset_le (p0, p1, p2, p3, out_len);
229
230     // add password
231     // truncate at 32 is wanted, not a bug!
232     // add o_buf
233
234     w0[0] |= p0[0];
235     w0[1] |= p0[1];
236     w0[2] |= p0[2];
237     w0[3] |= p0[3];
238     w1[0] |= p1[0];
239     w1[1] |= p1[1];
240     w1[2] |= p1[2];
241     w1[3] |= p1[3];
242     w2[0]  = o_buf[0];
243     w2[1]  = o_buf[1];
244     w2[2]  = o_buf[2];
245     w2[3]  = o_buf[3];
246     w3[0]  = o_buf[4];
247     w3[1]  = o_buf[5];
248     w3[2]  = o_buf[6];
249     w3[3]  = o_buf[7];
250
251     u32 digest[4];
252
253     digest[0] = MD5M_A;
254     digest[1] = MD5M_B;
255     digest[2] = MD5M_C;
256     digest[3] = MD5M_D;
257
258     md5_transform (w0, w1, w2, w3, digest);
259
260     w0[0] = P;
261     w0[1] = id_buf[0];
262     w0[2] = id_buf[1];
263     w0[3] = id_buf[2];
264     w1[0] = id_buf[3];
265     w1[1] = 0x80;
266     w1[2] = 0;
267     w1[3] = 0;
268     w2[0] = 0;
269     w2[1] = 0;
270     w2[2] = 0;
271     w2[3] = 0;
272     w3[0] = 0;
273     w3[1] = 0;
274     w3[2] = 84 * 8;
275     w3[3] = 0;
276
277     md5_transform (w0, w1, w2, w3, digest);
278
279     u32x a = digest[0];
280     u32x b = digest[1] & 0xff;
281     u32x c = 0;
282     u32x d = 0;
283
284     COMPARE_M_SIMD (a, b, c, d);
285   }
286 }
287
288 __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)
289 {
290 }
291
292 __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)
293 {
294 }
295
296 __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)
297 {
298   /**
299    * modifier
300    */
301
302   const u32 lid = get_local_id (0);
303
304   /**
305    * base
306    */
307
308   const u32 gid = get_global_id (0);
309
310   if (gid >= gid_max) return;
311
312   u32 pw_buf0[4];
313   u32 pw_buf1[4];
314
315   pw_buf0[0] = pws[gid].i[ 0];
316   pw_buf0[1] = pws[gid].i[ 1];
317   pw_buf0[2] = pws[gid].i[ 2];
318   pw_buf0[3] = pws[gid].i[ 3];
319   pw_buf1[0] = pws[gid].i[ 4];
320   pw_buf1[1] = pws[gid].i[ 5];
321   pw_buf1[2] = pws[gid].i[ 6];
322   pw_buf1[3] = pws[gid].i[ 7];
323
324   const u32 pw_len = pws[gid].pw_len;
325
326   /**
327    * U_buf
328    */
329
330   u32 o_buf[8];
331
332   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
333   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
334   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
335   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
336   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
337   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
338   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
339   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
340
341   u32 P = pdf_bufs[salt_pos].P;
342
343   u32 id_buf[4];
344
345   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
346   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
347   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
348   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
349
350   /**
351    * digest
352    */
353
354   const u32 search[4] =
355   {
356     digests_buf[digests_offset].digest_buf[DGST_R0],
357     digests_buf[digests_offset].digest_buf[DGST_R1],
358     digests_buf[digests_offset].digest_buf[DGST_R2],
359     digests_buf[digests_offset].digest_buf[DGST_R3]
360   };
361
362   /**
363    * loop
364    */
365
366   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
367   {
368     u32x w0[4] = { 0 };
369     u32x w1[4] = { 0 };
370     u32x w2[4] = { 0 };
371     u32x w3[4] = { 0 };
372
373     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
374
375     /**
376      * pdf
377      */
378
379     u32 p0[4];
380     u32 p1[4];
381     u32 p2[4];
382     u32 p3[4];
383
384     p0[0] = padding[0];
385     p0[1] = padding[1];
386     p0[2] = padding[2];
387     p0[3] = padding[3];
388     p1[0] = padding[4];
389     p1[1] = padding[5];
390     p1[2] = padding[6];
391     p1[3] = padding[7];
392     p2[0] = 0;
393     p2[1] = 0;
394     p2[2] = 0;
395     p2[3] = 0;
396     p3[0] = 0;
397     p3[1] = 0;
398     p3[2] = 0;
399     p3[3] = 0;
400
401     switch_buffer_by_offset_le (p0, p1, p2, p3, out_len);
402
403     // add password
404     // truncate at 32 is wanted, not a bug!
405     // add o_buf
406
407     w0[0] |= p0[0];
408     w0[1] |= p0[1];
409     w0[2] |= p0[2];
410     w0[3] |= p0[3];
411     w1[0] |= p1[0];
412     w1[1] |= p1[1];
413     w1[2] |= p1[2];
414     w1[3] |= p1[3];
415     w2[0]  = o_buf[0];
416     w2[1]  = o_buf[1];
417     w2[2]  = o_buf[2];
418     w2[3]  = o_buf[3];
419     w3[0]  = o_buf[4];
420     w3[1]  = o_buf[5];
421     w3[2]  = o_buf[6];
422     w3[3]  = o_buf[7];
423
424     u32 digest[4];
425
426     digest[0] = MD5M_A;
427     digest[1] = MD5M_B;
428     digest[2] = MD5M_C;
429     digest[3] = MD5M_D;
430
431     md5_transform (w0, w1, w2, w3, digest);
432
433     w0[0] = P;
434     w0[1] = id_buf[0];
435     w0[2] = id_buf[1];
436     w0[3] = id_buf[2];
437     w1[0] = id_buf[3];
438     w1[1] = 0x80;
439     w1[2] = 0;
440     w1[3] = 0;
441     w2[0] = 0;
442     w2[1] = 0;
443     w2[2] = 0;
444     w2[3] = 0;
445     w3[0] = 0;
446     w3[1] = 0;
447     w3[2] = 84 * 8;
448     w3[3] = 0;
449
450     md5_transform (w0, w1, w2, w3, digest);
451
452     u32x a = digest[0];
453     u32x b = digest[1] & 0xff;
454     u32x c = 0;
455     u32x d = 0;
456
457     COMPARE_S_SIMD (a, b, c, d);
458   }
459 }
460
461 __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)
462 {
463 }
464
465 __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)
466 {
467 }