Fixed two major problems
[hashcat.git] / OpenCL / m10400_a3.cl
1 /**
2  * Authors.....: Jens Steube <jens.steube@gmail.com>
3  *               Gabriele Gristina <matrix@hashcat.net>
4  *
5  * License.....: MIT
6  */
7
8 #define _MD5_
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 typedef struct
36 {
37   u8 S[256];
38
39   u32 wtf_its_faster;
40
41 } RC4_KEY;
42
43 static void swap (__local RC4_KEY *rc4_key, const u8 i, const u8 j)
44 {
45   u8 tmp;
46
47   tmp           = rc4_key->S[i];
48   rc4_key->S[i] = rc4_key->S[j];
49   rc4_key->S[j] = tmp;
50 }
51
52 static void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
53 {
54   u32 v = 0x03020100;
55   u32 a = 0x04040404;
56
57   __local u32 *ptr = (__local u32 *) rc4_key->S;
58
59   #pragma unroll
60   for (u32 i = 0; i < 64; i++)
61   {
62     ptr[i] = v; v += a;
63   }
64
65   const u32 d0 = data[0] >>  0;
66   const u32 d1 = data[0] >>  8;
67   const u32 d2 = data[0] >> 16;
68   const u32 d3 = data[0] >> 24;
69   const u32 d4 = data[1] >>  0;
70
71   u32 j = 0;
72
73   #pragma unroll
74   for (u32 i = 0; i < 255; i += 5)
75   {
76     j += rc4_key->S[i + 0] + d0; swap (rc4_key, i + 0, j);
77     j += rc4_key->S[i + 1] + d1; swap (rc4_key, i + 1, j);
78     j += rc4_key->S[i + 2] + d2; swap (rc4_key, i + 2, j);
79     j += rc4_key->S[i + 3] + d3; swap (rc4_key, i + 3, j);
80     j += rc4_key->S[i + 4] + d4; swap (rc4_key, i + 4, j);
81   }
82
83   j += rc4_key->S[255] + d0; swap (rc4_key, 255, j);
84 }
85
86 static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __constant u32 *in, u32 out[4])
87 {
88   #pragma unroll 4
89   for (u32 k = 0; k < 4; k++)
90   {
91     u32 xor4 = 0;
92
93     u8 idx;
94
95     i += 1;
96     j += rc4_key->S[i];
97
98     swap (rc4_key, i, j);
99
100     idx = rc4_key->S[i] + rc4_key->S[j];
101
102     xor4 |= rc4_key->S[idx] <<  0;
103
104     i += 1;
105     j += rc4_key->S[i];
106
107     swap (rc4_key, i, j);
108
109     idx = rc4_key->S[i] + rc4_key->S[j];
110
111     xor4 |= rc4_key->S[idx] <<  8;
112
113     i += 1;
114     j += rc4_key->S[i];
115
116     swap (rc4_key, i, j);
117
118     idx = rc4_key->S[i] + rc4_key->S[j];
119
120     xor4 |= rc4_key->S[idx] << 16;
121
122     i += 1;
123     j += rc4_key->S[i];
124
125     swap (rc4_key, i, j);
126
127     idx = rc4_key->S[i] + rc4_key->S[j];
128
129     xor4 |= rc4_key->S[idx] << 24;
130
131     out[k] = in[k] ^ xor4;
132   }
133
134   return j;
135 }
136
137 static void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
138 {
139   u32 a = digest[0];
140   u32 b = digest[1];
141   u32 c = digest[2];
142   u32 d = digest[3];
143
144   u32 w0_t = w0[0];
145   u32 w1_t = w0[1];
146   u32 w2_t = w0[2];
147   u32 w3_t = w0[3];
148   u32 w4_t = w1[0];
149   u32 w5_t = w1[1];
150   u32 w6_t = w1[2];
151   u32 w7_t = w1[3];
152   u32 w8_t = w2[0];
153   u32 w9_t = w2[1];
154   u32 wa_t = w2[2];
155   u32 wb_t = w2[3];
156   u32 wc_t = w3[0];
157   u32 wd_t = w3[1];
158   u32 we_t = w3[2];
159   u32 wf_t = w3[3];
160
161   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
162   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
163   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
164   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
165   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
166   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
167   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
168   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
169   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
170   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
171   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
172   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
173   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
174   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
175   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
176   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
177
178   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
179   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
180   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
181   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
182   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
183   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
184   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
185   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
186   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
187   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
188   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
189   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
190   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
191   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
192   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
193   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
194
195   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
196   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
197   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
198   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
199   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
200   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
201   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
202   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
203   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
204   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
205   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
206   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
207   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
208   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
209   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
210   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
211
212   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
213   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
214   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
215   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
216   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
217   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
218   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
219   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
220   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
221   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
222   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
223   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
224   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
225   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
226   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
227   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
228
229   digest[0] += a;
230   digest[1] += b;
231   digest[2] += c;
232   digest[3] += d;
233 }
234
235 static void m10400m (__local RC4_KEY *rc4_keys, 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)
236 {
237   /**
238    * modifier
239    */
240
241   const u32 gid = get_global_id (0);
242   const u32 lid = get_local_id (0);
243
244   __local RC4_KEY *rc4_key = &rc4_keys[lid];
245
246   /**
247    * U_buf
248    */
249
250   u32 o_buf[8];
251
252   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
253   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
254   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
255   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
256   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
257   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
258   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
259   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
260
261   u32 P = pdf_bufs[salt_pos].P;
262
263   u32 id_buf[4];
264
265   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
266   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
267   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
268   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
269
270   /**
271    * loop
272    */
273
274   u32 w0l = w0[0];
275
276   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
277   {
278     const u32 w0r = ix_create_bft (bfs_buf, il_pos);
279
280     w0[0] = w0l | w0r;
281
282     u32 w0_t[4];
283     u32 w1_t[4];
284     u32 w2_t[4];
285     u32 w3_t[4];
286
287     // max length supported by pdf11 is 32
288
289     w0_t[0] = padding[0];
290     w0_t[1] = padding[1];
291     w0_t[2] = padding[2];
292     w0_t[3] = padding[3];
293     w1_t[0] = padding[4];
294     w1_t[1] = padding[5];
295     w1_t[2] = padding[6];
296     w1_t[3] = padding[7];
297     w2_t[0] = 0;
298     w2_t[1] = 0;
299     w2_t[2] = 0;
300     w2_t[3] = 0;
301     w3_t[0] = 0;
302     w3_t[1] = 0;
303     w3_t[2] = 0;
304     w3_t[3] = 0;
305
306     switch_buffer_by_offset_le_S (w0_t, w1_t, w2_t, w3_t, pw_len);
307
308     // add password
309     // truncate at 32 is wanted, not a bug!
310     // add o_buf
311
312     w0_t[0] |= w0[0];
313     w0_t[1] |= w0[1];
314     w0_t[2] |= w0[2];
315     w0_t[3] |= w0[3];
316     w1_t[0] |= w1[0];
317     w1_t[1] |= w1[1];
318     w1_t[2] |= w1[2];
319     w1_t[3] |= w1[3];
320     w2_t[0]  = o_buf[0];
321     w2_t[1]  = o_buf[1];
322     w2_t[2]  = o_buf[2];
323     w2_t[3]  = o_buf[3];
324     w3_t[0]  = o_buf[4];
325     w3_t[1]  = o_buf[5];
326     w3_t[2]  = o_buf[6];
327     w3_t[3]  = o_buf[7];
328
329     u32 digest[4];
330
331     digest[0] = MD5M_A;
332     digest[1] = MD5M_B;
333     digest[2] = MD5M_C;
334     digest[3] = MD5M_D;
335
336     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
337
338     w0_t[0] = P;
339     w0_t[1] = id_buf[0];
340     w0_t[2] = id_buf[1];
341     w0_t[3] = id_buf[2];
342     w1_t[0] = id_buf[3];
343     w1_t[1] = 0x80;
344     w1_t[2] = 0;
345     w1_t[3] = 0;
346     w2_t[0] = 0;
347     w2_t[1] = 0;
348     w2_t[2] = 0;
349     w2_t[3] = 0;
350     w3_t[0] = 0;
351     w3_t[1] = 0;
352     w3_t[2] = 84 * 8;
353     w3_t[3] = 0;
354
355     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
356
357     // now the RC4 part
358
359     u32 key[4];
360
361     key[0] = digest[0];
362     key[1] = digest[1] & 0xff;
363     key[2] = 0;
364     key[3] = 0;
365
366     rc4_init_16 (rc4_key, key);
367
368     u32 out[4];
369
370     rc4_next_16 (rc4_key, 0, 0, padding, out);
371
372     COMPARE_M_SIMD (out[0], out[1], out[2], out[3]);
373   }
374 }
375
376 static void m10400s (__local RC4_KEY *rc4_keys, 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)
377 {
378   /**
379    * modifier
380    */
381
382   const u32 gid = get_global_id (0);
383   const u32 lid = get_local_id (0);
384
385   __local RC4_KEY *rc4_key = &rc4_keys[lid];
386
387   /**
388    * digest
389    */
390
391   const u32 search[4] =
392   {
393     digests_buf[digests_offset].digest_buf[DGST_R0],
394     digests_buf[digests_offset].digest_buf[DGST_R1],
395     digests_buf[digests_offset].digest_buf[DGST_R2],
396     digests_buf[digests_offset].digest_buf[DGST_R3]
397   };
398
399   /**
400    * U_buf
401    */
402
403   u32 o_buf[8];
404
405   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
406   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
407   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
408   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
409   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
410   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
411   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
412   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
413
414   u32 P = pdf_bufs[salt_pos].P;
415
416   u32 id_buf[4];
417
418   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
419   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
420   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
421   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
422
423   /**
424    * loop
425    */
426
427   u32 w0l = w0[0];
428
429   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
430   {
431     const u32 w0r = ix_create_bft (bfs_buf, il_pos);
432
433     w0[0] = w0l | w0r;
434
435     u32 w0_t[4];
436     u32 w1_t[4];
437     u32 w2_t[4];
438     u32 w3_t[4];
439
440     // max length supported by pdf11 is 32
441
442     w0_t[0] = padding[0];
443     w0_t[1] = padding[1];
444     w0_t[2] = padding[2];
445     w0_t[3] = padding[3];
446     w1_t[0] = padding[4];
447     w1_t[1] = padding[5];
448     w1_t[2] = padding[6];
449     w1_t[3] = padding[7];
450     w2_t[0] = 0;
451     w2_t[1] = 0;
452     w2_t[2] = 0;
453     w2_t[3] = 0;
454     w3_t[0] = 0;
455     w3_t[1] = 0;
456     w3_t[2] = 0;
457     w3_t[3] = 0;
458
459     switch_buffer_by_offset_le_S (w0_t, w1_t, w2_t, w3_t, pw_len);
460
461     // add password
462     // truncate at 32 is wanted, not a bug!
463     // add o_buf
464
465     w0_t[0] |= w0[0];
466     w0_t[1] |= w0[1];
467     w0_t[2] |= w0[2];
468     w0_t[3] |= w0[3];
469     w1_t[0] |= w1[0];
470     w1_t[1] |= w1[1];
471     w1_t[2] |= w1[2];
472     w1_t[3] |= w1[3];
473     w2_t[0]  = o_buf[0];
474     w2_t[1]  = o_buf[1];
475     w2_t[2]  = o_buf[2];
476     w2_t[3]  = o_buf[3];
477     w3_t[0]  = o_buf[4];
478     w3_t[1]  = o_buf[5];
479     w3_t[2]  = o_buf[6];
480     w3_t[3]  = o_buf[7];
481
482     u32 digest[4];
483
484     digest[0] = MD5M_A;
485     digest[1] = MD5M_B;
486     digest[2] = MD5M_C;
487     digest[3] = MD5M_D;
488
489     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
490
491     w0_t[0] = P;
492     w0_t[1] = id_buf[0];
493     w0_t[2] = id_buf[1];
494     w0_t[3] = id_buf[2];
495     w1_t[0] = id_buf[3];
496     w1_t[1] = 0x80;
497     w1_t[2] = 0;
498     w1_t[3] = 0;
499     w2_t[0] = 0;
500     w2_t[1] = 0;
501     w2_t[2] = 0;
502     w2_t[3] = 0;
503     w3_t[0] = 0;
504     w3_t[1] = 0;
505     w3_t[2] = 84 * 8;
506     w3_t[3] = 0;
507
508     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
509
510     // now the RC4 part
511
512     u32 key[4];
513
514     key[0] = digest[0];
515     key[1] = digest[1] & 0xff;
516     key[2] = 0;
517     key[3] = 0;
518
519     rc4_init_16 (rc4_key, key);
520
521     u32 out[4];
522
523     rc4_next_16 (rc4_key, 0, 0, padding, out);
524
525     COMPARE_S_SIMD (out[0], out[1], out[2], out[3]);
526   }
527 }
528
529 __kernel void m10400_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)
530 {
531   /**
532    * base
533    */
534
535   const u32 gid = get_global_id (0);
536
537   if (gid >= gid_max) return;
538
539   u32 w0[4];
540
541   w0[0] = pws[gid].i[ 0];
542   w0[1] = pws[gid].i[ 1];
543   w0[2] = pws[gid].i[ 2];
544   w0[3] = pws[gid].i[ 3];
545
546   u32 w1[4];
547
548   w1[0] = 0;
549   w1[1] = 0;
550   w1[2] = 0;
551   w1[3] = 0;
552
553   u32 w2[4];
554
555   w2[0] = 0;
556   w2[1] = 0;
557   w2[2] = 0;
558   w2[3] = 0;
559
560   u32 w3[4];
561
562   w3[0] = 0;
563   w3[1] = 0;
564   w3[2] = 0;
565   w3[3] = 0;
566
567   const u32 pw_len = pws[gid].pw_len;
568
569   /**
570    * main
571    */
572
573   __local RC4_KEY rc4_keys[64];
574
575   m10400m (rc4_keys, 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);
576 }
577
578 __kernel void m10400_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)
579 {
580   /**
581    * base
582    */
583
584   const u32 gid = get_global_id (0);
585
586   if (gid >= gid_max) return;
587
588   u32 w0[4];
589
590   w0[0] = pws[gid].i[ 0];
591   w0[1] = pws[gid].i[ 1];
592   w0[2] = pws[gid].i[ 2];
593   w0[3] = pws[gid].i[ 3];
594
595   u32 w1[4];
596
597   w1[0] = pws[gid].i[ 4];
598   w1[1] = pws[gid].i[ 5];
599   w1[2] = pws[gid].i[ 6];
600   w1[3] = pws[gid].i[ 7];
601
602   u32 w2[4];
603
604   w2[0] = 0;
605   w2[1] = 0;
606   w2[2] = 0;
607   w2[3] = 0;
608
609   u32 w3[4];
610
611   w3[0] = 0;
612   w3[1] = 0;
613   w3[2] = 0;
614   w3[3] = 0;
615
616   const u32 pw_len = pws[gid].pw_len;
617
618   /**
619    * main
620    */
621
622   __local RC4_KEY rc4_keys[64];
623
624   m10400m (rc4_keys, 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);
625 }
626
627 __kernel void m10400_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)
628 {
629   /**
630    * base
631    */
632
633   const u32 gid = get_global_id (0);
634
635   if (gid >= gid_max) return;
636
637   u32 w0[4];
638
639   w0[0] = pws[gid].i[ 0];
640   w0[1] = pws[gid].i[ 1];
641   w0[2] = pws[gid].i[ 2];
642   w0[3] = pws[gid].i[ 3];
643
644   u32 w1[4];
645
646   w1[0] = pws[gid].i[ 4];
647   w1[1] = pws[gid].i[ 5];
648   w1[2] = pws[gid].i[ 6];
649   w1[3] = pws[gid].i[ 7];
650
651   u32 w2[4];
652
653   w2[0] = pws[gid].i[ 8];
654   w2[1] = pws[gid].i[ 9];
655   w2[2] = pws[gid].i[10];
656   w2[3] = pws[gid].i[11];
657
658   u32 w3[4];
659
660   w3[0] = pws[gid].i[12];
661   w3[1] = pws[gid].i[13];
662   w3[2] = 0;
663   w3[3] = 0;
664
665   const u32 pw_len = pws[gid].pw_len;
666
667   /**
668    * main
669    */
670
671   __local RC4_KEY rc4_keys[64];
672
673   m10400m (rc4_keys, 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);
674 }
675
676 __kernel void m10400_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)
677 {
678   /**
679    * base
680    */
681
682   const u32 gid = get_global_id (0);
683
684   if (gid >= gid_max) return;
685
686   u32 w0[4];
687
688   w0[0] = pws[gid].i[ 0];
689   w0[1] = pws[gid].i[ 1];
690   w0[2] = pws[gid].i[ 2];
691   w0[3] = pws[gid].i[ 3];
692
693   u32 w1[4];
694
695   w1[0] = 0;
696   w1[1] = 0;
697   w1[2] = 0;
698   w1[3] = 0;
699
700   u32 w2[4];
701
702   w2[0] = 0;
703   w2[1] = 0;
704   w2[2] = 0;
705   w2[3] = 0;
706
707   u32 w3[4];
708
709   w3[0] = 0;
710   w3[1] = 0;
711   w3[2] = 0;
712   w3[3] = 0;
713
714   const u32 pw_len = pws[gid].pw_len;
715
716   /**
717    * main
718    */
719
720   __local RC4_KEY rc4_keys[64];
721
722   m10400s (rc4_keys, 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);
723 }
724
725 __kernel void m10400_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)
726 {
727   /**
728    * base
729    */
730
731   const u32 gid = get_global_id (0);
732
733   if (gid >= gid_max) return;
734
735   u32 w0[4];
736
737   w0[0] = pws[gid].i[ 0];
738   w0[1] = pws[gid].i[ 1];
739   w0[2] = pws[gid].i[ 2];
740   w0[3] = pws[gid].i[ 3];
741
742   u32 w1[4];
743
744   w1[0] = pws[gid].i[ 4];
745   w1[1] = pws[gid].i[ 5];
746   w1[2] = pws[gid].i[ 6];
747   w1[3] = pws[gid].i[ 7];
748
749   u32 w2[4];
750
751   w2[0] = 0;
752   w2[1] = 0;
753   w2[2] = 0;
754   w2[3] = 0;
755
756   u32 w3[4];
757
758   w3[0] = 0;
759   w3[1] = 0;
760   w3[2] = 0;
761   w3[3] = 0;
762
763   const u32 pw_len = pws[gid].pw_len;
764
765   /**
766    * main
767    */
768
769   __local RC4_KEY rc4_keys[64];
770
771   m10400s (rc4_keys, 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);
772 }
773
774 __kernel void m10400_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)
775 {
776   /**
777    * base
778    */
779
780   const u32 gid = get_global_id (0);
781
782   if (gid >= gid_max) return;
783
784   u32 w0[4];
785
786   w0[0] = pws[gid].i[ 0];
787   w0[1] = pws[gid].i[ 1];
788   w0[2] = pws[gid].i[ 2];
789   w0[3] = pws[gid].i[ 3];
790
791   u32 w1[4];
792
793   w1[0] = pws[gid].i[ 4];
794   w1[1] = pws[gid].i[ 5];
795   w1[2] = pws[gid].i[ 6];
796   w1[3] = pws[gid].i[ 7];
797
798   u32 w2[4];
799
800   w2[0] = pws[gid].i[ 8];
801   w2[1] = pws[gid].i[ 9];
802   w2[2] = pws[gid].i[10];
803   w2[3] = pws[gid].i[11];
804
805   u32 w3[4];
806
807   w3[0] = pws[gid].i[12];
808   w3[1] = pws[gid].i[13];
809   w3[2] = 0;
810   w3[3] = 0;
811
812   const u32 pw_len = pws[gid].pw_len;
813
814   /**
815    * main
816    */
817
818   __local RC4_KEY rc4_keys[64];
819
820   m10400s (rc4_keys, 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);
821 }