a7abb23e7a7e0311889d3d3c53b48218fb4651dd
[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 #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_simd.cl"
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 void md5_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u32x digest[4])
36 {
37   u32x a = digest[0];
38   u32x b = digest[1];
39   u32x c = digest[2];
40   u32x d = digest[3];
41
42   u32x w0_t = w0[0];
43   u32x w1_t = w0[1];
44   u32x w2_t = w0[2];
45   u32x w3_t = w0[3];
46   u32x w4_t = w1[0];
47   u32x w5_t = w1[1];
48   u32x w6_t = w1[2];
49   u32x w7_t = w1[3];
50   u32x w8_t = w2[0];
51   u32x w9_t = w2[1];
52   u32x wa_t = w2[2];
53   u32x wb_t = w2[3];
54   u32x wc_t = w3[0];
55   u32x wd_t = w3[1];
56   u32x we_t = w3[2];
57   u32x 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 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 il_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   u32 p0[4];
167   u32 p1[4];
168   u32 p2[4];
169   u32 p3[4];
170
171   p0[0] = padding[0];
172   p0[1] = padding[1];
173   p0[2] = padding[2];
174   p0[3] = padding[3];
175   p1[0] = padding[4];
176   p1[1] = padding[5];
177   p1[2] = padding[6];
178   p1[3] = padding[7];
179   p2[0] = 0;
180   p2[1] = 0;
181   p2[2] = 0;
182   p2[3] = 0;
183   p3[0] = 0;
184   p3[1] = 0;
185   p3[2] = 0;
186   p3[3] = 0;
187
188   switch_buffer_by_offset_le (p0, p1, p2, p3, pw_len);
189
190   w0[0] |= p0[0];
191   w0[1] |= p0[1];
192   w0[2] |= p0[2];
193   w0[3] |= p0[3];
194   w1[0] |= p1[0];
195   w1[1] |= p1[1];
196   w1[2] |= p1[2];
197   w1[3] |= p1[3];
198   w2[0] |= p2[0];
199   w2[1] |= p2[1];
200   w2[2] |= p2[2];
201   w2[3] |= p2[3];
202   w3[0] |= p3[0];
203   w3[1] |= p3[1];
204   w3[2] |= p3[2];
205   w3[3] |= p3[3];
206
207   /**
208    * loop
209    */
210
211   u32 w0l = w0[0];
212
213   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
214   {
215     const u32 w0r = ix_create_bft (bfs_buf, il_pos);
216
217     w0[0] = w0l | w0r;
218
219     /**
220      * pdf
221      */
222
223     u32 w0_t[4];
224     u32 w1_t[4];
225     u32 w2_t[4];
226     u32 w3_t[4];
227
228     // add password
229     // truncate at 32 is wanted, not a bug!
230     // add o_buf
231
232     w0_t[0] = w0[0];
233     w0_t[1] = w0[1];
234     w0_t[2] = w0[2];
235     w0_t[3] = w0[3];
236     w1_t[0] = w1[0];
237     w1_t[1] = w1[1];
238     w1_t[2] = w1[2];
239     w1_t[3] = w1[3];
240     w2_t[0] = o_buf[0];
241     w2_t[1] = o_buf[1];
242     w2_t[2] = o_buf[2];
243     w2_t[3] = o_buf[3];
244     w3_t[0] = o_buf[4];
245     w3_t[1] = o_buf[5];
246     w3_t[2] = o_buf[6];
247     w3_t[3] = o_buf[7];
248
249     u32 digest[4];
250
251     digest[0] = MD5M_A;
252     digest[1] = MD5M_B;
253     digest[2] = MD5M_C;
254     digest[3] = MD5M_D;
255
256     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
257
258     w0_t[0] = P;
259     w0_t[1] = id_buf[0];
260     w0_t[2] = id_buf[1];
261     w0_t[3] = id_buf[2];
262     w1_t[0] = id_buf[3];
263     w1_t[1] = 0x80;
264     w1_t[2] = 0;
265     w1_t[3] = 0;
266     w2_t[0] = 0;
267     w2_t[1] = 0;
268     w2_t[2] = 0;
269     w2_t[3] = 0;
270     w3_t[0] = 0;
271     w3_t[1] = 0;
272     w3_t[2] = 84 * 8;
273     w3_t[3] = 0;
274
275     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
276
277     u32x a = digest[0];
278     u32x b = digest[1] & 0xff;
279     u32x c = 0;
280     u32x d = 0;
281
282     COMPARE_M_SIMD (a, b, c, d);
283   }
284 }
285
286 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 il_cnt, const u32 digests_cnt, const u32 digests_offset)
287 {
288   /**
289    * modifier
290    */
291
292   const u32 gid = get_global_id (0);
293   const u32 lid = get_local_id (0);
294
295   /**
296    * U_buf
297    */
298
299   u32 o_buf[8];
300
301   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
302   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
303   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
304   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
305   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
306   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
307   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
308   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
309
310   u32 P = pdf_bufs[salt_pos].P;
311
312   u32 id_buf[4];
313
314   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
315   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
316   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
317   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
318
319   u32 p0[4];
320   u32 p1[4];
321   u32 p2[4];
322   u32 p3[4];
323
324   p0[0] = padding[0];
325   p0[1] = padding[1];
326   p0[2] = padding[2];
327   p0[3] = padding[3];
328   p1[0] = padding[4];
329   p1[1] = padding[5];
330   p1[2] = padding[6];
331   p1[3] = padding[7];
332   p2[0] = 0;
333   p2[1] = 0;
334   p2[2] = 0;
335   p2[3] = 0;
336   p3[0] = 0;
337   p3[1] = 0;
338   p3[2] = 0;
339   p3[3] = 0;
340
341   switch_buffer_by_offset_le (p0, p1, p2, p3, pw_len);
342
343   w0[0] |= p0[0];
344   w0[1] |= p0[1];
345   w0[2] |= p0[2];
346   w0[3] |= p0[3];
347   w1[0] |= p1[0];
348   w1[1] |= p1[1];
349   w1[2] |= p1[2];
350   w1[3] |= p1[3];
351   w2[0] |= p2[0];
352   w2[1] |= p2[1];
353   w2[2] |= p2[2];
354   w2[3] |= p2[3];
355   w3[0] |= p3[0];
356   w3[1] |= p3[1];
357   w3[2] |= p3[2];
358   w3[3] |= p3[3];
359
360   /**
361    * digest
362    */
363
364   const u32 search[4] =
365   {
366     digests_buf[digests_offset].digest_buf[DGST_R0],
367     digests_buf[digests_offset].digest_buf[DGST_R1],
368     digests_buf[digests_offset].digest_buf[DGST_R2],
369     digests_buf[digests_offset].digest_buf[DGST_R3]
370   };
371
372   /**
373    * loop
374    */
375
376   u32 w0l = w0[0];
377
378   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
379   {
380     const u32 w0r = ix_create_bft (bfs_buf, il_pos);
381
382     w0[0] = w0l | w0r;
383
384     /**
385      * pdf
386      */
387
388     u32 w0_t[4];
389     u32 w1_t[4];
390     u32 w2_t[4];
391     u32 w3_t[4];
392
393     // add password
394     // truncate at 32 is wanted, not a bug!
395     // add o_buf
396
397     w0_t[0] = w0[0];
398     w0_t[1] = w0[1];
399     w0_t[2] = w0[2];
400     w0_t[3] = w0[3];
401     w1_t[0] = w1[0];
402     w1_t[1] = w1[1];
403     w1_t[2] = w1[2];
404     w1_t[3] = w1[3];
405     w2_t[0] = o_buf[0];
406     w2_t[1] = o_buf[1];
407     w2_t[2] = o_buf[2];
408     w2_t[3] = o_buf[3];
409     w3_t[0] = o_buf[4];
410     w3_t[1] = o_buf[5];
411     w3_t[2] = o_buf[6];
412     w3_t[3] = o_buf[7];
413
414     u32 digest[4];
415
416     digest[0] = MD5M_A;
417     digest[1] = MD5M_B;
418     digest[2] = MD5M_C;
419     digest[3] = MD5M_D;
420
421     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
422
423     w0_t[0] = P;
424     w0_t[1] = id_buf[0];
425     w0_t[2] = id_buf[1];
426     w0_t[3] = id_buf[2];
427     w1_t[0] = id_buf[3];
428     w1_t[1] = 0x80;
429     w1_t[2] = 0;
430     w1_t[3] = 0;
431     w2_t[0] = 0;
432     w2_t[1] = 0;
433     w2_t[2] = 0;
434     w2_t[3] = 0;
435     w3_t[0] = 0;
436     w3_t[1] = 0;
437     w3_t[2] = 84 * 8;
438     w3_t[3] = 0;
439
440     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
441
442     u32x a = digest[0];
443     u32x b = digest[1] & 0xff;
444     u32x c = 0;
445     u32x d = 0;
446
447     COMPARE_S_SIMD (a, b, c, d);
448   }
449 }
450
451 __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)
452 {
453   /**
454    * base
455    */
456
457   const u32 gid = get_global_id (0);
458
459   if (gid >= gid_max) return;
460
461   u32 w0[4];
462
463   w0[0] = pws[gid].i[ 0];
464   w0[1] = pws[gid].i[ 1];
465   w0[2] = pws[gid].i[ 2];
466   w0[3] = pws[gid].i[ 3];
467
468   u32 w1[4];
469
470   w1[0] = 0;
471   w1[1] = 0;
472   w1[2] = 0;
473   w1[3] = 0;
474
475   u32 w2[4];
476
477   w2[0] = 0;
478   w2[1] = 0;
479   w2[2] = 0;
480   w2[3] = 0;
481
482   u32 w3[4];
483
484   w3[0] = 0;
485   w3[1] = 0;
486   w3[2] = 0;
487   w3[3] = 0;
488
489   const u32 pw_len = pws[gid].pw_len;
490
491   /**
492    * main
493    */
494
495   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, il_cnt, digests_cnt, digests_offset);
496 }
497
498 __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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
499 {
500   /**
501    * base
502    */
503
504   const u32 gid = get_global_id (0);
505
506   if (gid >= gid_max) return;
507
508   u32 w0[4];
509
510   w0[0] = pws[gid].i[ 0];
511   w0[1] = pws[gid].i[ 1];
512   w0[2] = pws[gid].i[ 2];
513   w0[3] = pws[gid].i[ 3];
514
515   u32 w1[4];
516
517   w1[0] = pws[gid].i[ 4];
518   w1[1] = pws[gid].i[ 5];
519   w1[2] = pws[gid].i[ 6];
520   w1[3] = pws[gid].i[ 7];
521
522   u32 w2[4];
523
524   w2[0] = 0;
525   w2[1] = 0;
526   w2[2] = 0;
527   w2[3] = 0;
528
529   u32 w3[4];
530
531   w3[0] = 0;
532   w3[1] = 0;
533   w3[2] = 0;
534   w3[3] = 0;
535
536   const u32 pw_len = pws[gid].pw_len;
537
538   /**
539    * main
540    */
541
542   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, il_cnt, digests_cnt, digests_offset);
543 }
544
545 __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)
546 {
547   /**
548    * base
549    */
550
551   const u32 gid = get_global_id (0);
552
553   if (gid >= gid_max) return;
554
555   u32 w0[4];
556
557   w0[0] = pws[gid].i[ 0];
558   w0[1] = pws[gid].i[ 1];
559   w0[2] = pws[gid].i[ 2];
560   w0[3] = pws[gid].i[ 3];
561
562   u32 w1[4];
563
564   w1[0] = pws[gid].i[ 4];
565   w1[1] = pws[gid].i[ 5];
566   w1[2] = pws[gid].i[ 6];
567   w1[3] = pws[gid].i[ 7];
568
569   u32 w2[4];
570
571   w2[0] = pws[gid].i[ 8];
572   w2[1] = pws[gid].i[ 9];
573   w2[2] = pws[gid].i[10];
574   w2[3] = pws[gid].i[11];
575
576   u32 w3[4];
577
578   w3[0] = pws[gid].i[12];
579   w3[1] = pws[gid].i[13];
580   w3[2] = 0;
581   w3[3] = 0;
582
583   const u32 pw_len = pws[gid].pw_len;
584
585   /**
586    * main
587    */
588
589   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, il_cnt, digests_cnt, digests_offset);
590 }
591
592 __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)
593 {
594   /**
595    * base
596    */
597
598   const u32 gid = get_global_id (0);
599
600   if (gid >= gid_max) return;
601
602   u32 w0[4];
603
604   w0[0] = pws[gid].i[ 0];
605   w0[1] = pws[gid].i[ 1];
606   w0[2] = pws[gid].i[ 2];
607   w0[3] = pws[gid].i[ 3];
608
609   u32 w1[4];
610
611   w1[0] = 0;
612   w1[1] = 0;
613   w1[2] = 0;
614   w1[3] = 0;
615
616   u32 w2[4];
617
618   w2[0] = 0;
619   w2[1] = 0;
620   w2[2] = 0;
621   w2[3] = 0;
622
623   u32 w3[4];
624
625   w3[0] = 0;
626   w3[1] = 0;
627   w3[2] = 0;
628   w3[3] = 0;
629
630   const u32 pw_len = pws[gid].pw_len;
631
632   /**
633    * main
634    */
635
636   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, il_cnt, digests_cnt, digests_offset);
637 }
638
639 __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)
640 {
641   /**
642    * base
643    */
644
645   const u32 gid = get_global_id (0);
646
647   if (gid >= gid_max) return;
648
649   u32 w0[4];
650
651   w0[0] = pws[gid].i[ 0];
652   w0[1] = pws[gid].i[ 1];
653   w0[2] = pws[gid].i[ 2];
654   w0[3] = pws[gid].i[ 3];
655
656   u32 w1[4];
657
658   w1[0] = pws[gid].i[ 4];
659   w1[1] = pws[gid].i[ 5];
660   w1[2] = pws[gid].i[ 6];
661   w1[3] = pws[gid].i[ 7];
662
663   u32 w2[4];
664
665   w2[0] = 0;
666   w2[1] = 0;
667   w2[2] = 0;
668   w2[3] = 0;
669
670   u32 w3[4];
671
672   w3[0] = 0;
673   w3[1] = 0;
674   w3[2] = 0;
675   w3[3] = 0;
676
677   const u32 pw_len = pws[gid].pw_len;
678
679   /**
680    * main
681    */
682
683   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, il_cnt, digests_cnt, digests_offset);
684 }
685
686 __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)
687 {
688   /**
689    * base
690    */
691
692   const u32 gid = get_global_id (0);
693
694   if (gid >= gid_max) return;
695
696   u32 w0[4];
697
698   w0[0] = pws[gid].i[ 0];
699   w0[1] = pws[gid].i[ 1];
700   w0[2] = pws[gid].i[ 2];
701   w0[3] = pws[gid].i[ 3];
702
703   u32 w1[4];
704
705   w1[0] = pws[gid].i[ 4];
706   w1[1] = pws[gid].i[ 5];
707   w1[2] = pws[gid].i[ 6];
708   w1[3] = pws[gid].i[ 7];
709
710   u32 w2[4];
711
712   w2[0] = pws[gid].i[ 8];
713   w2[1] = pws[gid].i[ 9];
714   w2[2] = pws[gid].i[10];
715   w2[3] = pws[gid].i[11];
716
717   u32 w3[4];
718
719   w3[0] = pws[gid].i[12];
720   w3[1] = pws[gid].i[13];
721   w3[2] = 0;
722   w3[3] = 0;
723
724   const u32 pw_len = pws[gid].pw_len;
725
726   /**
727    * main
728    */
729
730   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, il_cnt, digests_cnt, digests_offset);
731 }