Upgrade kernel to support dynamic local work sizes
[hashcat.git] / OpenCL / m10420_a3.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 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
20 #define COMPARE_S "OpenCL/check_single_comp4.c"
21 #define COMPARE_M "OpenCL/check_multi_comp4.c"
22
23 __constant u32 padding[8] =
24 {
25   0x5e4ebf28,
26   0x418a754e,
27   0x564e0064,
28   0x0801faff,
29   0xb6002e2e,
30   0x803e68d0,
31   0xfea90c2f,
32   0x7a695364
33 };
34
35 static void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
36 {
37   u32 a = digest[0];
38   u32 b = digest[1];
39   u32 c = digest[2];
40   u32 d = digest[3];
41
42   u32 w0_t = w0[0];
43   u32 w1_t = w0[1];
44   u32 w2_t = w0[2];
45   u32 w3_t = w0[3];
46   u32 w4_t = w1[0];
47   u32 w5_t = w1[1];
48   u32 w6_t = w1[2];
49   u32 w7_t = w1[3];
50   u32 w8_t = w2[0];
51   u32 w9_t = w2[1];
52   u32 wa_t = w2[2];
53   u32 wb_t = w2[3];
54   u32 wc_t = w3[0];
55   u32 wd_t = w3[1];
56   u32 we_t = w3[2];
57   u32 wf_t = w3[3];
58
59   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
60   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
61   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
62   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
63   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
64   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
65   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
66   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
67   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
68   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
69   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
70   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
71   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
72   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
73   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
74   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
75
76   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
77   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
78   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
79   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
80   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
81   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
82   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
83   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
84   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
85   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
86   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
87   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
88   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
89   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
90   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
91   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
92
93   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
94   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
95   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
96   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
97   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
98   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
99   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
100   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
101   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
102   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
103   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
104   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
105   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
106   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
107   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
108   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
109
110   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
111   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
112   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
113   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
114   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
115   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
116   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
117   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
118   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
119   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
120   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
121   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
122   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
123   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
124   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
125   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
126
127   digest[0] += a;
128   digest[1] += b;
129   digest[2] += c;
130   digest[3] += d;
131 }
132
133 static void m10420m (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], const u32 pw_len, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
134 {
135   /**
136    * modifier
137    */
138
139   const u32 gid = get_global_id (0);
140   const u32 lid = get_local_id (0);
141
142   /**
143    * U_buf
144    */
145
146   u32 o_buf[8];
147
148   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
149   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
150   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
151   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
152   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
153   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
154   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
155   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
156
157   u32 P = pdf_bufs[salt_pos].P;
158
159   u32 id_buf[4];
160
161   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
162   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
163   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
164   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
165
166   /**
167    * loop
168    */
169
170   u32 w0l = w0[0];
171
172   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
173   {
174     const u32 w0r = bfs_buf[il_pos].i;
175
176     w0[0] = w0l | w0r;
177
178     u32 w0_t[4];
179     u32 w1_t[4];
180     u32 w2_t[4];
181     u32 w3_t[4];
182
183     // max length supported by pdf11 is 32
184
185     w0_t[0] = padding[0];
186     w0_t[1] = padding[1];
187     w0_t[2] = padding[2];
188     w0_t[3] = padding[3];
189     w1_t[0] = padding[4];
190     w1_t[1] = padding[5];
191     w1_t[2] = padding[6];
192     w1_t[3] = padding[7];
193     w2_t[0] = 0;
194     w2_t[1] = 0;
195     w2_t[2] = 0;
196     w2_t[3] = 0;
197     w3_t[0] = 0;
198     w3_t[1] = 0;
199     w3_t[2] = 0;
200     w3_t[3] = 0;
201
202     switch_buffer_by_offset (w0_t, w1_t, w2_t, w3_t, pw_len);
203
204     // add password
205     // truncate at 32 is wanted, not a bug!
206     // add o_buf
207
208     w0_t[0] |= w0[0];
209     w0_t[1] |= w0[1];
210     w0_t[2] |= w0[2];
211     w0_t[3] |= w0[3];
212     w1_t[0] |= w1[0];
213     w1_t[1] |= w1[1];
214     w1_t[2] |= w1[2];
215     w1_t[3] |= w1[3];
216     w2_t[0]  = o_buf[0];
217     w2_t[1]  = o_buf[1];
218     w2_t[2]  = o_buf[2];
219     w2_t[3]  = o_buf[3];
220     w3_t[0]  = o_buf[4];
221     w3_t[1]  = o_buf[5];
222     w3_t[2]  = o_buf[6];
223     w3_t[3]  = o_buf[7];
224
225     u32 digest[4];
226
227     digest[0] = MD5M_A;
228     digest[1] = MD5M_B;
229     digest[2] = MD5M_C;
230     digest[3] = MD5M_D;
231
232     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
233
234     w0_t[0] = P;
235     w0_t[1] = id_buf[0];
236     w0_t[2] = id_buf[1];
237     w0_t[3] = id_buf[2];
238     w1_t[0] = id_buf[3];
239     w1_t[1] = 0x80;
240     w1_t[2] = 0;
241     w1_t[3] = 0;
242     w2_t[0] = 0;
243     w2_t[1] = 0;
244     w2_t[2] = 0;
245     w2_t[3] = 0;
246     w3_t[0] = 0;
247     w3_t[1] = 0;
248     w3_t[2] = 84 * 8;
249     w3_t[3] = 0;
250
251     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
252
253     u32 a = digest[0];
254     u32 b = digest[1] & 0xff;
255
256     const u32 r0 = a;
257     const u32 r1 = b;
258     const u32 r2 = 0;
259     const u32 r3 = 0;
260
261     #include COMPARE_M
262   }
263 }
264
265 static void m10420s (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], const u32 pw_len, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
266 {
267   /**
268    * modifier
269    */
270
271   const u32 gid = get_global_id (0);
272   const u32 lid = get_local_id (0);
273
274   /**
275    * digest
276    */
277
278   const u32 search[4] =
279   {
280     digests_buf[digests_offset].digest_buf[DGST_R0],
281     digests_buf[digests_offset].digest_buf[DGST_R1],
282     digests_buf[digests_offset].digest_buf[DGST_R2],
283     digests_buf[digests_offset].digest_buf[DGST_R3]
284   };
285
286   /**
287    * U_buf
288    */
289
290   u32 o_buf[8];
291
292   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
293   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
294   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
295   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
296   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
297   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
298   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
299   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
300
301   u32 P = pdf_bufs[salt_pos].P;
302
303   u32 id_buf[4];
304
305   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
306   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
307   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
308   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
309
310   /**
311    * loop
312    */
313
314   u32 w0l = w0[0];
315
316   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
317   {
318     const u32 w0r = bfs_buf[il_pos].i;
319
320     w0[0] = w0l | w0r;
321
322     u32 w0_t[4];
323     u32 w1_t[4];
324     u32 w2_t[4];
325     u32 w3_t[4];
326
327     // max length supported by pdf11 is 32
328
329     w0_t[0] = padding[0];
330     w0_t[1] = padding[1];
331     w0_t[2] = padding[2];
332     w0_t[3] = padding[3];
333     w1_t[0] = padding[4];
334     w1_t[1] = padding[5];
335     w1_t[2] = padding[6];
336     w1_t[3] = padding[7];
337     w2_t[0] = 0;
338     w2_t[1] = 0;
339     w2_t[2] = 0;
340     w2_t[3] = 0;
341     w3_t[0] = 0;
342     w3_t[1] = 0;
343     w3_t[2] = 0;
344     w3_t[3] = 0;
345
346     switch_buffer_by_offset (w0_t, w1_t, w2_t, w3_t, pw_len);
347
348     // add password
349     // truncate at 32 is wanted, not a bug!
350     // add o_buf
351
352     w0_t[0] |= w0[0];
353     w0_t[1] |= w0[1];
354     w0_t[2] |= w0[2];
355     w0_t[3] |= w0[3];
356     w1_t[0] |= w1[0];
357     w1_t[1] |= w1[1];
358     w1_t[2] |= w1[2];
359     w1_t[3] |= w1[3];
360     w2_t[0]  = o_buf[0];
361     w2_t[1]  = o_buf[1];
362     w2_t[2]  = o_buf[2];
363     w2_t[3]  = o_buf[3];
364     w3_t[0]  = o_buf[4];
365     w3_t[1]  = o_buf[5];
366     w3_t[2]  = o_buf[6];
367     w3_t[3]  = o_buf[7];
368
369     u32 digest[4];
370
371     digest[0] = MD5M_A;
372     digest[1] = MD5M_B;
373     digest[2] = MD5M_C;
374     digest[3] = MD5M_D;
375
376     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
377
378     w0_t[0] = P;
379     w0_t[1] = id_buf[0];
380     w0_t[2] = id_buf[1];
381     w0_t[3] = id_buf[2];
382     w1_t[0] = id_buf[3];
383     w1_t[1] = 0x80;
384     w1_t[2] = 0;
385     w1_t[3] = 0;
386     w2_t[0] = 0;
387     w2_t[1] = 0;
388     w2_t[2] = 0;
389     w2_t[3] = 0;
390     w3_t[0] = 0;
391     w3_t[1] = 0;
392     w3_t[2] = 84 * 8;
393     w3_t[3] = 0;
394
395     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
396
397     u32 a = digest[0];
398     u32 b = digest[1] & 0xff;
399
400     const u32 r0 = a;
401     const u32 r1 = b;
402     const u32 r2 = 0;
403     const u32 r3 = 0;
404
405     #include COMPARE_S
406   }
407 }
408
409 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
410 {
411   /**
412    * base
413    */
414
415   const u32 gid = get_global_id (0);
416
417   if (gid >= gid_max) return;
418
419   u32 w0[4];
420
421   w0[0] = pws[gid].i[ 0];
422   w0[1] = pws[gid].i[ 1];
423   w0[2] = pws[gid].i[ 2];
424   w0[3] = pws[gid].i[ 3];
425
426   u32 w1[4];
427
428   w1[0] = 0;
429   w1[1] = 0;
430   w1[2] = 0;
431   w1[3] = 0;
432
433   u32 w2[4];
434
435   w2[0] = 0;
436   w2[1] = 0;
437   w2[2] = 0;
438   w2[3] = 0;
439
440   u32 w3[4];
441
442   w3[0] = 0;
443   w3[1] = 0;
444   w3[2] = 0;
445   w3[3] = 0;
446
447   const u32 pw_len = pws[gid].pw_len;
448
449   /**
450    * main
451    */
452
453   m10420m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, pdf_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
454 }
455
456 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
457 {
458   /**
459    * base
460    */
461
462   const u32 gid = get_global_id (0);
463
464   if (gid >= gid_max) return;
465
466   u32 w0[4];
467
468   w0[0] = pws[gid].i[ 0];
469   w0[1] = pws[gid].i[ 1];
470   w0[2] = pws[gid].i[ 2];
471   w0[3] = pws[gid].i[ 3];
472
473   u32 w1[4];
474
475   w1[0] = pws[gid].i[ 4];
476   w1[1] = pws[gid].i[ 5];
477   w1[2] = pws[gid].i[ 6];
478   w1[3] = pws[gid].i[ 7];
479
480   u32 w2[4];
481
482   w2[0] = 0;
483   w2[1] = 0;
484   w2[2] = 0;
485   w2[3] = 0;
486
487   u32 w3[4];
488
489   w3[0] = 0;
490   w3[1] = 0;
491   w3[2] = 0;
492   w3[3] = 0;
493
494   const u32 pw_len = pws[gid].pw_len;
495
496   /**
497    * main
498    */
499
500   m10420m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, pdf_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
501 }
502
503 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
504 {
505   /**
506    * base
507    */
508
509   const u32 gid = get_global_id (0);
510
511   if (gid >= gid_max) return;
512
513   u32 w0[4];
514
515   w0[0] = pws[gid].i[ 0];
516   w0[1] = pws[gid].i[ 1];
517   w0[2] = pws[gid].i[ 2];
518   w0[3] = pws[gid].i[ 3];
519
520   u32 w1[4];
521
522   w1[0] = pws[gid].i[ 4];
523   w1[1] = pws[gid].i[ 5];
524   w1[2] = pws[gid].i[ 6];
525   w1[3] = pws[gid].i[ 7];
526
527   u32 w2[4];
528
529   w2[0] = pws[gid].i[ 8];
530   w2[1] = pws[gid].i[ 9];
531   w2[2] = pws[gid].i[10];
532   w2[3] = pws[gid].i[11];
533
534   u32 w3[4];
535
536   w3[0] = pws[gid].i[12];
537   w3[1] = pws[gid].i[13];
538   w3[2] = 0;
539   w3[3] = 0;
540
541   const u32 pw_len = pws[gid].pw_len;
542
543   /**
544    * main
545    */
546
547   m10420m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, pdf_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
548 }
549
550 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
551 {
552   /**
553    * base
554    */
555
556   const u32 gid = get_global_id (0);
557
558   if (gid >= gid_max) return;
559
560   u32 w0[4];
561
562   w0[0] = pws[gid].i[ 0];
563   w0[1] = pws[gid].i[ 1];
564   w0[2] = pws[gid].i[ 2];
565   w0[3] = pws[gid].i[ 3];
566
567   u32 w1[4];
568
569   w1[0] = 0;
570   w1[1] = 0;
571   w1[2] = 0;
572   w1[3] = 0;
573
574   u32 w2[4];
575
576   w2[0] = 0;
577   w2[1] = 0;
578   w2[2] = 0;
579   w2[3] = 0;
580
581   u32 w3[4];
582
583   w3[0] = 0;
584   w3[1] = 0;
585   w3[2] = 0;
586   w3[3] = 0;
587
588   const u32 pw_len = pws[gid].pw_len;
589
590   /**
591    * main
592    */
593
594   m10420s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, pdf_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
595 }
596
597 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
598 {
599   /**
600    * base
601    */
602
603   const u32 gid = get_global_id (0);
604
605   if (gid >= gid_max) return;
606
607   u32 w0[4];
608
609   w0[0] = pws[gid].i[ 0];
610   w0[1] = pws[gid].i[ 1];
611   w0[2] = pws[gid].i[ 2];
612   w0[3] = pws[gid].i[ 3];
613
614   u32 w1[4];
615
616   w1[0] = pws[gid].i[ 4];
617   w1[1] = pws[gid].i[ 5];
618   w1[2] = pws[gid].i[ 6];
619   w1[3] = pws[gid].i[ 7];
620
621   u32 w2[4];
622
623   w2[0] = 0;
624   w2[1] = 0;
625   w2[2] = 0;
626   w2[3] = 0;
627
628   u32 w3[4];
629
630   w3[0] = 0;
631   w3[1] = 0;
632   w3[2] = 0;
633   w3[3] = 0;
634
635   const u32 pw_len = pws[gid].pw_len;
636
637   /**
638    * main
639    */
640
641   m10420s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, pdf_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
642 }
643
644 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
645 {
646   /**
647    * base
648    */
649
650   const u32 gid = get_global_id (0);
651
652   if (gid >= gid_max) return;
653
654   u32 w0[4];
655
656   w0[0] = pws[gid].i[ 0];
657   w0[1] = pws[gid].i[ 1];
658   w0[2] = pws[gid].i[ 2];
659   w0[3] = pws[gid].i[ 3];
660
661   u32 w1[4];
662
663   w1[0] = pws[gid].i[ 4];
664   w1[1] = pws[gid].i[ 5];
665   w1[2] = pws[gid].i[ 6];
666   w1[3] = pws[gid].i[ 7];
667
668   u32 w2[4];
669
670   w2[0] = pws[gid].i[ 8];
671   w2[1] = pws[gid].i[ 9];
672   w2[2] = pws[gid].i[10];
673   w2[3] = pws[gid].i[11];
674
675   u32 w3[4];
676
677   w3[0] = pws[gid].i[12];
678   w3[1] = pws[gid].i[13];
679   w3[2] = 0;
680   w3[3] = 0;
681
682   const u32 pw_len = pws[gid].pw_len;
683
684   /**
685    * main
686    */
687
688   m10420s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, pdf_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
689 }