Merge branch 'master' of https://github.com/hashcat/oclHashcat
[hashcat.git] / OpenCL / m10400_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 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[4], 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[64], 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)
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 < bfs_cnt; il_pos++)
277   {
278     const u32 w0r = bfs_buf[il_pos].i;
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 (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     const u32 r0 = out[0];
373     const u32 r1 = out[1];
374     const u32 r2 = out[2];
375     const u32 r3 = out[3];
376
377     #include COMPARE_M
378   }
379 }
380
381 static void m10400s (__local RC4_KEY rc4_keys[64], 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)
382 {
383   /**
384    * modifier
385    */
386
387   const u32 gid = get_global_id (0);
388   const u32 lid = get_local_id (0);
389
390   __local RC4_KEY *rc4_key = &rc4_keys[lid];
391
392   /**
393    * digest
394    */
395
396   const u32 search[4] =
397   {
398     digests_buf[digests_offset].digest_buf[DGST_R0],
399     digests_buf[digests_offset].digest_buf[DGST_R1],
400     digests_buf[digests_offset].digest_buf[DGST_R2],
401     digests_buf[digests_offset].digest_buf[DGST_R3]
402   };
403
404   /**
405    * U_buf
406    */
407
408   u32 o_buf[8];
409
410   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
411   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
412   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
413   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
414   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
415   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
416   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
417   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
418
419   u32 P = pdf_bufs[salt_pos].P;
420
421   u32 id_buf[4];
422
423   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
424   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
425   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
426   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
427
428   /**
429    * loop
430    */
431
432   u32 w0l = w0[0];
433
434   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
435   {
436     const u32 w0r = bfs_buf[il_pos].i;
437
438     w0[0] = w0l | w0r;
439
440     u32 w0_t[4];
441     u32 w1_t[4];
442     u32 w2_t[4];
443     u32 w3_t[4];
444
445     // max length supported by pdf11 is 32
446
447     w0_t[0] = padding[0];
448     w0_t[1] = padding[1];
449     w0_t[2] = padding[2];
450     w0_t[3] = padding[3];
451     w1_t[0] = padding[4];
452     w1_t[1] = padding[5];
453     w1_t[2] = padding[6];
454     w1_t[3] = padding[7];
455     w2_t[0] = 0;
456     w2_t[1] = 0;
457     w2_t[2] = 0;
458     w2_t[3] = 0;
459     w3_t[0] = 0;
460     w3_t[1] = 0;
461     w3_t[2] = 0;
462     w3_t[3] = 0;
463
464     switch_buffer_by_offset (w0_t, w1_t, w2_t, w3_t, pw_len);
465
466     // add password
467     // truncate at 32 is wanted, not a bug!
468     // add o_buf
469
470     w0_t[0] |= w0[0];
471     w0_t[1] |= w0[1];
472     w0_t[2] |= w0[2];
473     w0_t[3] |= w0[3];
474     w1_t[0] |= w1[0];
475     w1_t[1] |= w1[1];
476     w1_t[2] |= w1[2];
477     w1_t[3] |= w1[3];
478     w2_t[0]  = o_buf[0];
479     w2_t[1]  = o_buf[1];
480     w2_t[2]  = o_buf[2];
481     w2_t[3]  = o_buf[3];
482     w3_t[0]  = o_buf[4];
483     w3_t[1]  = o_buf[5];
484     w3_t[2]  = o_buf[6];
485     w3_t[3]  = o_buf[7];
486
487     u32 digest[4];
488
489     digest[0] = MD5M_A;
490     digest[1] = MD5M_B;
491     digest[2] = MD5M_C;
492     digest[3] = MD5M_D;
493
494     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
495
496     w0_t[0] = P;
497     w0_t[1] = id_buf[0];
498     w0_t[2] = id_buf[1];
499     w0_t[3] = id_buf[2];
500     w1_t[0] = id_buf[3];
501     w1_t[1] = 0x80;
502     w1_t[2] = 0;
503     w1_t[3] = 0;
504     w2_t[0] = 0;
505     w2_t[1] = 0;
506     w2_t[2] = 0;
507     w2_t[3] = 0;
508     w3_t[0] = 0;
509     w3_t[1] = 0;
510     w3_t[2] = 84 * 8;
511     w3_t[3] = 0;
512
513     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
514
515     // now the RC4 part
516
517     u32 key[4];
518
519     key[0] = digest[0];
520     key[1] = digest[1] & 0xff;
521     key[2] = 0;
522     key[3] = 0;
523
524     rc4_init_16 (rc4_key, key);
525
526     u32 out[4];
527
528     rc4_next_16 (rc4_key, 0, 0, padding, out);
529
530     const u32 r0 = out[0];
531     const u32 r1 = out[1];
532     const u32 r2 = out[2];
533     const u32 r3 = out[3];
534
535     #include COMPARE_S
536   }
537 }
538
539 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
540 {
541   /**
542    * base
543    */
544
545   const u32 gid = get_global_id (0);
546
547   if (gid >= gid_max) return;
548
549   u32 w0[4];
550
551   w0[0] = pws[gid].i[ 0];
552   w0[1] = pws[gid].i[ 1];
553   w0[2] = pws[gid].i[ 2];
554   w0[3] = pws[gid].i[ 3];
555
556   u32 w1[4];
557
558   w1[0] = 0;
559   w1[1] = 0;
560   w1[2] = 0;
561   w1[3] = 0;
562
563   u32 w2[4];
564
565   w2[0] = 0;
566   w2[1] = 0;
567   w2[2] = 0;
568   w2[3] = 0;
569
570   u32 w3[4];
571
572   w3[0] = 0;
573   w3[1] = 0;
574   w3[2] = 0;
575   w3[3] = 0;
576
577   const u32 pw_len = pws[gid].pw_len;
578
579   /**
580    * main
581    */
582
583   __local RC4_KEY rc4_keys[64];
584
585   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, bfs_cnt, digests_cnt, digests_offset);
586 }
587
588 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
589 {
590   /**
591    * base
592    */
593
594   const u32 gid = get_global_id (0);
595
596   if (gid >= gid_max) return;
597
598   u32 w0[4];
599
600   w0[0] = pws[gid].i[ 0];
601   w0[1] = pws[gid].i[ 1];
602   w0[2] = pws[gid].i[ 2];
603   w0[3] = pws[gid].i[ 3];
604
605   u32 w1[4];
606
607   w1[0] = pws[gid].i[ 4];
608   w1[1] = pws[gid].i[ 5];
609   w1[2] = pws[gid].i[ 6];
610   w1[3] = pws[gid].i[ 7];
611
612   u32 w2[4];
613
614   w2[0] = 0;
615   w2[1] = 0;
616   w2[2] = 0;
617   w2[3] = 0;
618
619   u32 w3[4];
620
621   w3[0] = 0;
622   w3[1] = 0;
623   w3[2] = 0;
624   w3[3] = 0;
625
626   const u32 pw_len = pws[gid].pw_len;
627
628   /**
629    * main
630    */
631
632   __local RC4_KEY rc4_keys[64];
633
634   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, bfs_cnt, digests_cnt, digests_offset);
635 }
636
637 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
638 {
639   /**
640    * base
641    */
642
643   const u32 gid = get_global_id (0);
644
645   if (gid >= gid_max) return;
646
647   u32 w0[4];
648
649   w0[0] = pws[gid].i[ 0];
650   w0[1] = pws[gid].i[ 1];
651   w0[2] = pws[gid].i[ 2];
652   w0[3] = pws[gid].i[ 3];
653
654   u32 w1[4];
655
656   w1[0] = pws[gid].i[ 4];
657   w1[1] = pws[gid].i[ 5];
658   w1[2] = pws[gid].i[ 6];
659   w1[3] = pws[gid].i[ 7];
660
661   u32 w2[4];
662
663   w2[0] = pws[gid].i[ 8];
664   w2[1] = pws[gid].i[ 9];
665   w2[2] = pws[gid].i[10];
666   w2[3] = pws[gid].i[11];
667
668   u32 w3[4];
669
670   w3[0] = pws[gid].i[12];
671   w3[1] = pws[gid].i[13];
672   w3[2] = 0;
673   w3[3] = 0;
674
675   const u32 pw_len = pws[gid].pw_len;
676
677   /**
678    * main
679    */
680
681   __local RC4_KEY rc4_keys[64];
682
683   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, bfs_cnt, digests_cnt, digests_offset);
684 }
685
686 __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 bfs_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] = 0;
706   w1[1] = 0;
707   w1[2] = 0;
708   w1[3] = 0;
709
710   u32 w2[4];
711
712   w2[0] = 0;
713   w2[1] = 0;
714   w2[2] = 0;
715   w2[3] = 0;
716
717   u32 w3[4];
718
719   w3[0] = 0;
720   w3[1] = 0;
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   __local RC4_KEY rc4_keys[64];
731
732   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, bfs_cnt, digests_cnt, digests_offset);
733 }
734
735 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
736 {
737   /**
738    * base
739    */
740
741   const u32 gid = get_global_id (0);
742
743   if (gid >= gid_max) return;
744
745   u32 w0[4];
746
747   w0[0] = pws[gid].i[ 0];
748   w0[1] = pws[gid].i[ 1];
749   w0[2] = pws[gid].i[ 2];
750   w0[3] = pws[gid].i[ 3];
751
752   u32 w1[4];
753
754   w1[0] = pws[gid].i[ 4];
755   w1[1] = pws[gid].i[ 5];
756   w1[2] = pws[gid].i[ 6];
757   w1[3] = pws[gid].i[ 7];
758
759   u32 w2[4];
760
761   w2[0] = 0;
762   w2[1] = 0;
763   w2[2] = 0;
764   w2[3] = 0;
765
766   u32 w3[4];
767
768   w3[0] = 0;
769   w3[1] = 0;
770   w3[2] = 0;
771   w3[3] = 0;
772
773   const u32 pw_len = pws[gid].pw_len;
774
775   /**
776    * main
777    */
778
779   __local RC4_KEY rc4_keys[64];
780
781   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, bfs_cnt, digests_cnt, digests_offset);
782 }
783
784 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
785 {
786   /**
787    * base
788    */
789
790   const u32 gid = get_global_id (0);
791
792   if (gid >= gid_max) return;
793
794   u32 w0[4];
795
796   w0[0] = pws[gid].i[ 0];
797   w0[1] = pws[gid].i[ 1];
798   w0[2] = pws[gid].i[ 2];
799   w0[3] = pws[gid].i[ 3];
800
801   u32 w1[4];
802
803   w1[0] = pws[gid].i[ 4];
804   w1[1] = pws[gid].i[ 5];
805   w1[2] = pws[gid].i[ 6];
806   w1[3] = pws[gid].i[ 7];
807
808   u32 w2[4];
809
810   w2[0] = pws[gid].i[ 8];
811   w2[1] = pws[gid].i[ 9];
812   w2[2] = pws[gid].i[10];
813   w2[3] = pws[gid].i[11];
814
815   u32 w3[4];
816
817   w3[0] = pws[gid].i[12];
818   w3[1] = pws[gid].i[13];
819   w3[2] = 0;
820   w3[3] = 0;
821
822   const u32 pw_len = pws[gid].pw_len;
823
824   /**
825    * main
826    */
827
828   __local RC4_KEY rc4_keys[64];
829
830   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, bfs_cnt, digests_cnt, digests_offset);
831 }