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