Merge pull request #149 from gm4tr1x/md5crypt_warnings
[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 "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 "OpenCL/simd.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 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 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 += VECT_SIZE)
173   {
174     const u32x w0r = w0r_create_bft (bfs_buf, il_pos);
175
176     const u32x w0lr = w0l | w0r;
177
178     u32x w0_t[4];
179     u32x w1_t[4];
180     u32x w2_t[4];
181     u32x 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_le (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] |= w0lr;
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     u32x 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     u32x a = digest[0];
254     u32x b = digest[1] & 0xff;
255     u32x c = 0;
256     u32x d = 0;
257
258     COMPARE_M_SIMD (a, b, c, d);
259   }
260 }
261
262 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)
263 {
264   /**
265    * modifier
266    */
267
268   const u32 gid = get_global_id (0);
269   const u32 lid = get_local_id (0);
270
271   /**
272    * digest
273    */
274
275   const u32 search[4] =
276   {
277     digests_buf[digests_offset].digest_buf[DGST_R0],
278     digests_buf[digests_offset].digest_buf[DGST_R1],
279     digests_buf[digests_offset].digest_buf[DGST_R2],
280     digests_buf[digests_offset].digest_buf[DGST_R3]
281   };
282
283   /**
284    * U_buf
285    */
286
287   u32 o_buf[8];
288
289   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
290   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
291   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
292   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
293   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
294   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
295   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
296   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
297
298   u32 P = pdf_bufs[salt_pos].P;
299
300   u32 id_buf[4];
301
302   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
303   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
304   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
305   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
306
307   /**
308    * loop
309    */
310
311   u32 w0l = w0[0];
312
313   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos += VECT_SIZE)
314   {
315     const u32x w0r = w0r_create_bft (bfs_buf, il_pos);
316
317     const u32x w0lr = w0l | w0r;
318
319     u32x w0_t[4];
320     u32x w1_t[4];
321     u32x w2_t[4];
322     u32x w3_t[4];
323
324     // max length supported by pdf11 is 32
325
326     w0_t[0] = padding[0];
327     w0_t[1] = padding[1];
328     w0_t[2] = padding[2];
329     w0_t[3] = padding[3];
330     w1_t[0] = padding[4];
331     w1_t[1] = padding[5];
332     w1_t[2] = padding[6];
333     w1_t[3] = padding[7];
334     w2_t[0] = 0;
335     w2_t[1] = 0;
336     w2_t[2] = 0;
337     w2_t[3] = 0;
338     w3_t[0] = 0;
339     w3_t[1] = 0;
340     w3_t[2] = 0;
341     w3_t[3] = 0;
342
343     switch_buffer_by_offset_le (w0_t, w1_t, w2_t, w3_t, pw_len);
344
345     // add password
346     // truncate at 32 is wanted, not a bug!
347     // add o_buf
348
349     w0_t[0] |= w0lr;
350     w0_t[1] |= w0[1];
351     w0_t[2] |= w0[2];
352     w0_t[3] |= w0[3];
353     w1_t[0] |= w1[0];
354     w1_t[1] |= w1[1];
355     w1_t[2] |= w1[2];
356     w1_t[3] |= w1[3];
357     w2_t[0]  = o_buf[0];
358     w2_t[1]  = o_buf[1];
359     w2_t[2]  = o_buf[2];
360     w2_t[3]  = o_buf[3];
361     w3_t[0]  = o_buf[4];
362     w3_t[1]  = o_buf[5];
363     w3_t[2]  = o_buf[6];
364     w3_t[3]  = o_buf[7];
365
366     u32x digest[4];
367
368     digest[0] = MD5M_A;
369     digest[1] = MD5M_B;
370     digest[2] = MD5M_C;
371     digest[3] = MD5M_D;
372
373     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
374
375     w0_t[0] = P;
376     w0_t[1] = id_buf[0];
377     w0_t[2] = id_buf[1];
378     w0_t[3] = id_buf[2];
379     w1_t[0] = id_buf[3];
380     w1_t[1] = 0x80;
381     w1_t[2] = 0;
382     w1_t[3] = 0;
383     w2_t[0] = 0;
384     w2_t[1] = 0;
385     w2_t[2] = 0;
386     w2_t[3] = 0;
387     w3_t[0] = 0;
388     w3_t[1] = 0;
389     w3_t[2] = 84 * 8;
390     w3_t[3] = 0;
391
392     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
393
394     u32x a = digest[0];
395     u32x b = digest[1] & 0xff;
396     u32x c = 0;
397     u32x d = 0;
398
399     COMPARE_S_SIMD (a, b, c, d);
400   }
401 }
402
403 __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)
404 {
405   /**
406    * base
407    */
408
409   const u32 gid = get_global_id (0);
410
411   if (gid >= gid_max) return;
412
413   u32 w0[4];
414
415   w0[0] = pws[gid].i[ 0];
416   w0[1] = pws[gid].i[ 1];
417   w0[2] = pws[gid].i[ 2];
418   w0[3] = pws[gid].i[ 3];
419
420   u32 w1[4];
421
422   w1[0] = 0;
423   w1[1] = 0;
424   w1[2] = 0;
425   w1[3] = 0;
426
427   u32 w2[4];
428
429   w2[0] = 0;
430   w2[1] = 0;
431   w2[2] = 0;
432   w2[3] = 0;
433
434   u32 w3[4];
435
436   w3[0] = 0;
437   w3[1] = 0;
438   w3[2] = 0;
439   w3[3] = 0;
440
441   const u32 pw_len = pws[gid].pw_len;
442
443   /**
444    * main
445    */
446
447   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);
448 }
449
450 __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)
451 {
452   /**
453    * base
454    */
455
456   const u32 gid = get_global_id (0);
457
458   if (gid >= gid_max) return;
459
460   u32 w0[4];
461
462   w0[0] = pws[gid].i[ 0];
463   w0[1] = pws[gid].i[ 1];
464   w0[2] = pws[gid].i[ 2];
465   w0[3] = pws[gid].i[ 3];
466
467   u32 w1[4];
468
469   w1[0] = pws[gid].i[ 4];
470   w1[1] = pws[gid].i[ 5];
471   w1[2] = pws[gid].i[ 6];
472   w1[3] = pws[gid].i[ 7];
473
474   u32 w2[4];
475
476   w2[0] = 0;
477   w2[1] = 0;
478   w2[2] = 0;
479   w2[3] = 0;
480
481   u32 w3[4];
482
483   w3[0] = 0;
484   w3[1] = 0;
485   w3[2] = 0;
486   w3[3] = 0;
487
488   const u32 pw_len = pws[gid].pw_len;
489
490   /**
491    * main
492    */
493
494   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);
495 }
496
497 __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)
498 {
499   /**
500    * base
501    */
502
503   const u32 gid = get_global_id (0);
504
505   if (gid >= gid_max) return;
506
507   u32 w0[4];
508
509   w0[0] = pws[gid].i[ 0];
510   w0[1] = pws[gid].i[ 1];
511   w0[2] = pws[gid].i[ 2];
512   w0[3] = pws[gid].i[ 3];
513
514   u32 w1[4];
515
516   w1[0] = pws[gid].i[ 4];
517   w1[1] = pws[gid].i[ 5];
518   w1[2] = pws[gid].i[ 6];
519   w1[3] = pws[gid].i[ 7];
520
521   u32 w2[4];
522
523   w2[0] = pws[gid].i[ 8];
524   w2[1] = pws[gid].i[ 9];
525   w2[2] = pws[gid].i[10];
526   w2[3] = pws[gid].i[11];
527
528   u32 w3[4];
529
530   w3[0] = pws[gid].i[12];
531   w3[1] = pws[gid].i[13];
532   w3[2] = 0;
533   w3[3] = 0;
534
535   const u32 pw_len = pws[gid].pw_len;
536
537   /**
538    * main
539    */
540
541   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);
542 }
543
544 __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)
545 {
546   /**
547    * base
548    */
549
550   const u32 gid = get_global_id (0);
551
552   if (gid >= gid_max) return;
553
554   u32 w0[4];
555
556   w0[0] = pws[gid].i[ 0];
557   w0[1] = pws[gid].i[ 1];
558   w0[2] = pws[gid].i[ 2];
559   w0[3] = pws[gid].i[ 3];
560
561   u32 w1[4];
562
563   w1[0] = 0;
564   w1[1] = 0;
565   w1[2] = 0;
566   w1[3] = 0;
567
568   u32 w2[4];
569
570   w2[0] = 0;
571   w2[1] = 0;
572   w2[2] = 0;
573   w2[3] = 0;
574
575   u32 w3[4];
576
577   w3[0] = 0;
578   w3[1] = 0;
579   w3[2] = 0;
580   w3[3] = 0;
581
582   const u32 pw_len = pws[gid].pw_len;
583
584   /**
585    * main
586    */
587
588   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);
589 }
590
591 __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)
592 {
593   /**
594    * base
595    */
596
597   const u32 gid = get_global_id (0);
598
599   if (gid >= gid_max) return;
600
601   u32 w0[4];
602
603   w0[0] = pws[gid].i[ 0];
604   w0[1] = pws[gid].i[ 1];
605   w0[2] = pws[gid].i[ 2];
606   w0[3] = pws[gid].i[ 3];
607
608   u32 w1[4];
609
610   w1[0] = pws[gid].i[ 4];
611   w1[1] = pws[gid].i[ 5];
612   w1[2] = pws[gid].i[ 6];
613   w1[3] = pws[gid].i[ 7];
614
615   u32 w2[4];
616
617   w2[0] = 0;
618   w2[1] = 0;
619   w2[2] = 0;
620   w2[3] = 0;
621
622   u32 w3[4];
623
624   w3[0] = 0;
625   w3[1] = 0;
626   w3[2] = 0;
627   w3[3] = 0;
628
629   const u32 pw_len = pws[gid].pw_len;
630
631   /**
632    * main
633    */
634
635   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);
636 }
637
638 __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)
639 {
640   /**
641    * base
642    */
643
644   const u32 gid = get_global_id (0);
645
646   if (gid >= gid_max) return;
647
648   u32 w0[4];
649
650   w0[0] = pws[gid].i[ 0];
651   w0[1] = pws[gid].i[ 1];
652   w0[2] = pws[gid].i[ 2];
653   w0[3] = pws[gid].i[ 3];
654
655   u32 w1[4];
656
657   w1[0] = pws[gid].i[ 4];
658   w1[1] = pws[gid].i[ 5];
659   w1[2] = pws[gid].i[ 6];
660   w1[3] = pws[gid].i[ 7];
661
662   u32 w2[4];
663
664   w2[0] = pws[gid].i[ 8];
665   w2[1] = pws[gid].i[ 9];
666   w2[2] = pws[gid].i[10];
667   w2[3] = pws[gid].i[11];
668
669   u32 w3[4];
670
671   w3[0] = pws[gid].i[12];
672   w3[1] = pws[gid].i[13];
673   w3[2] = 0;
674   w3[3] = 0;
675
676   const u32 pw_len = pws[gid].pw_len;
677
678   /**
679    * main
680    */
681
682   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);
683 }