Extended password length up to 32 for 7zip
[hashcat.git] / OpenCL / m09710_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 _OLDOFFICE01_
9
10 //too much register pressure
11 //#define NEW_SIMD_CODE
12
13 #include "include/constants.h"
14 #include "include/kernel_vendor.h"
15
16 #define DGST_R0 0
17 #define DGST_R1 1
18 #define DGST_R2 2
19 #define DGST_R3 3
20
21 #include "include/kernel_functions.c"
22 #include "OpenCL/types_ocl.c"
23 #include "OpenCL/common.c"
24 #include "OpenCL/simd.c"
25
26 typedef struct
27 {
28   u8 S[256];
29
30   u32 wtf_its_faster;
31
32 } RC4_KEY;
33
34 void swap (__local RC4_KEY *rc4_key, const u8 i, const u8 j)
35 {
36   u8 tmp;
37
38   tmp           = rc4_key->S[i];
39   rc4_key->S[i] = rc4_key->S[j];
40   rc4_key->S[j] = tmp;
41 }
42
43 void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
44 {
45   u32 v = 0x03020100;
46   u32 a = 0x04040404;
47
48   __local u32 *ptr = (__local u32 *) rc4_key->S;
49
50   #pragma unroll
51   for (u32 i = 0; i < 64; i++)
52   {
53     *ptr++ = v; v += a;
54   }
55
56   u32 j = 0;
57
58   for (u32 i = 0; i < 16; i++)
59   {
60     u32 idx = i * 16;
61
62     u32 v;
63
64     v = data[0];
65
66     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
67     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
68     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
69     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
70
71     v = data[1];
72
73     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
74     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
75     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
76     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
77
78     v = data[2];
79
80     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
81     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
82     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
83     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
84
85     v = data[3];
86
87     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
88     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
89     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
90     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
91   }
92 }
93
94 u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, const u32 in[4], u32 out[4])
95 {
96   #pragma unroll
97   for (u32 k = 0; k < 4; k++)
98   {
99     u32 xor4 = 0;
100
101     u8 idx;
102
103     i += 1;
104     j += rc4_key->S[i];
105
106     swap (rc4_key, i, j);
107
108     idx = rc4_key->S[i] + rc4_key->S[j];
109
110     xor4 |= rc4_key->S[idx] <<  0;
111
112     i += 1;
113     j += rc4_key->S[i];
114
115     swap (rc4_key, i, j);
116
117     idx = rc4_key->S[i] + rc4_key->S[j];
118
119     xor4 |= rc4_key->S[idx] <<  8;
120
121     i += 1;
122     j += rc4_key->S[i];
123
124     swap (rc4_key, i, j);
125
126     idx = rc4_key->S[i] + rc4_key->S[j];
127
128     xor4 |= rc4_key->S[idx] << 16;
129
130     i += 1;
131     j += rc4_key->S[i];
132
133     swap (rc4_key, i, j);
134
135     idx = rc4_key->S[i] + rc4_key->S[j];
136
137     xor4 |= rc4_key->S[idx] << 24;
138
139     out[k] = in[k] ^ xor4;
140   }
141
142   return j;
143 }
144
145 void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
146 {
147   u32 a = digest[0];
148   u32 b = digest[1];
149   u32 c = digest[2];
150   u32 d = digest[3];
151
152   u32 w0_t = w0[0];
153   u32 w1_t = w0[1];
154   u32 w2_t = w0[2];
155   u32 w3_t = w0[3];
156   u32 w4_t = w1[0];
157   u32 w5_t = w1[1];
158   u32 w6_t = w1[2];
159   u32 w7_t = w1[3];
160   u32 w8_t = w2[0];
161   u32 w9_t = w2[1];
162   u32 wa_t = w2[2];
163   u32 wb_t = w2[3];
164   u32 wc_t = w3[0];
165   u32 wd_t = w3[1];
166   u32 we_t = w3[2];
167   u32 wf_t = w3[3];
168
169   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
170   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
171   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
172   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
173   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
174   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
175   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
176   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
177   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
178   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
179   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
180   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
181   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
182   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
183   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
184   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
185
186   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
187   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
188   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
189   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
190   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
191   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
192   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
193   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
194   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
195   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
196   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
197   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
198   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
199   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
200   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
201   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
202
203   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
204   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
205   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
206   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
207   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
208   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
209   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
210   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
211   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
212   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
213   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
214   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
215   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
216   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
217   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
218   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
219
220   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
221   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
222   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
223   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
224   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
225   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
226   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
227   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
228   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
229   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
230   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
231   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
232   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
233   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
234   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
235   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
236
237   digest[0] += a;
238   digest[1] += b;
239   digest[2] += c;
240   digest[3] += d;
241 }
242
243 void m09710m (__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 oldoffice01_t *oldoffice01_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)
244 {
245   /**
246    * modifier
247    */
248
249   const u32 gid = get_global_id (0);
250   const u32 lid = get_local_id (0);
251
252   /**
253    * shared
254    */
255
256   __local RC4_KEY *rc4_key = &rc4_keys[lid];
257
258   /**
259    * esalt
260    */
261
262   const u32 version = oldoffice01_bufs[salt_pos].version;
263
264   u32 encryptedVerifier[4];
265
266   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
267   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
268   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
269   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
270
271   /**
272    * loop
273    */
274
275   u32 w0l = w0[0];
276
277   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
278   {
279     const u32 w0r = ix_create_bft (bfs_buf, il_pos);
280
281     const u32 w0lr = w0l | w0r;
282
283     // first md5 to generate RC4 128 bit key
284
285     u32 w0_t[4];
286     u32 w1_t[4];
287     u32 w2_t[4];
288     u32 w3_t[4];
289
290     w0_t[0]  = w0lr;
291     w0_t[1]  = w0[1] & 0xff;
292     w0_t[2]  = 0x8000;
293     w0_t[3]  = 0;
294     w1_t[0]  = 0;
295     w1_t[1]  = 0;
296     w1_t[2]  = 0;
297     w1_t[3]  = 0;
298     w2_t[0]  = 0;
299     w2_t[1]  = 0;
300     w2_t[2]  = 0;
301     w2_t[3]  = 0;
302     w3_t[0]  = 0;
303     w3_t[1]  = 0;
304     w3_t[2]  = 9 * 8;
305     w3_t[3]  = 0;
306
307     u32 digest[4];
308
309     digest[0] = MD5M_A;
310     digest[1] = MD5M_B;
311     digest[2] = MD5M_C;
312     digest[3] = MD5M_D;
313
314     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
315
316     // now the RC4 part
317
318     rc4_init_16 (rc4_key, digest);
319
320     u32 out[4];
321
322     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
323
324     w0_t[0] = out[0];
325     w0_t[1] = out[1];
326     w0_t[2] = out[2];
327     w0_t[3] = out[3];
328     w1_t[0] = 0x80;
329     w1_t[1] = 0;
330     w1_t[2] = 0;
331     w1_t[3] = 0;
332     w2_t[0] = 0;
333     w2_t[1] = 0;
334     w2_t[2] = 0;
335     w2_t[3] = 0;
336     w3_t[0] = 0;
337     w3_t[1] = 0;
338     w3_t[2] = 16 * 8;
339     w3_t[3] = 0;
340
341     digest[0] = MD5M_A;
342     digest[1] = MD5M_B;
343     digest[2] = MD5M_C;
344     digest[3] = MD5M_D;
345
346     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
347
348     rc4_next_16 (rc4_key, 16, j, digest, out);
349
350     COMPARE_M_SIMD (out[0], out[1], out[2], out[3]);
351   }
352 }
353
354 void m09710s (__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 oldoffice01_t *oldoffice01_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)
355 {
356   /**
357    * modifier
358    */
359
360   const u32 gid = get_global_id (0);
361   const u32 lid = get_local_id (0);
362
363   /**
364    * shared
365    */
366
367   __local RC4_KEY *rc4_key = &rc4_keys[lid];
368
369   /**
370    * esalt
371    */
372
373   const u32 version = oldoffice01_bufs[salt_pos].version;
374
375   u32 encryptedVerifier[4];
376
377   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
378   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
379   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
380   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
381
382   /**
383    * digest
384    */
385
386   const u32 search[4] =
387   {
388     digests_buf[digests_offset].digest_buf[DGST_R0],
389     digests_buf[digests_offset].digest_buf[DGST_R1],
390     digests_buf[digests_offset].digest_buf[DGST_R2],
391     digests_buf[digests_offset].digest_buf[DGST_R3]
392   };
393
394   /**
395    * loop
396    */
397
398   u32 w0l = w0[0];
399
400   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
401   {
402     const u32 w0r = ix_create_bft (bfs_buf, il_pos);
403
404     const u32 w0lr = w0l | w0r;
405
406     // first md5 to generate RC4 128 bit key
407
408     u32 w0_t[4];
409     u32 w1_t[4];
410     u32 w2_t[4];
411     u32 w3_t[4];
412
413     w0_t[0]  = w0lr;
414     w0_t[1]  = w0[1] & 0xff;
415     w0_t[2]  = 0x8000;
416     w0_t[3]  = 0;
417     w1_t[0]  = 0;
418     w1_t[1]  = 0;
419     w1_t[2]  = 0;
420     w1_t[3]  = 0;
421     w2_t[0]  = 0;
422     w2_t[1]  = 0;
423     w2_t[2]  = 0;
424     w2_t[3]  = 0;
425     w3_t[0]  = 0;
426     w3_t[1]  = 0;
427     w3_t[2]  = 9 * 8;
428     w3_t[3]  = 0;
429
430     u32 digest[4];
431
432     digest[0] = MD5M_A;
433     digest[1] = MD5M_B;
434     digest[2] = MD5M_C;
435     digest[3] = MD5M_D;
436
437     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
438
439     // now the RC4 part
440
441     rc4_init_16 (rc4_key, digest);
442
443     u32 out[4];
444
445     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
446
447     w0_t[0] = out[0];
448     w0_t[1] = out[1];
449     w0_t[2] = out[2];
450     w0_t[3] = out[3];
451     w1_t[0] = 0x80;
452     w1_t[1] = 0;
453     w1_t[2] = 0;
454     w1_t[3] = 0;
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] = 16 * 8;
462     w3_t[3] = 0;
463
464     digest[0] = MD5M_A;
465     digest[1] = MD5M_B;
466     digest[2] = MD5M_C;
467     digest[3] = MD5M_D;
468
469     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
470
471     rc4_next_16 (rc4_key, 16, j, digest, out);
472
473     COMPARE_S_SIMD (out[0], out[1], out[2], out[3]);
474   }
475 }
476
477 __kernel void m09710_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 oldoffice01_t *oldoffice01_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)
478 {
479   /**
480    * base
481    */
482
483   const u32 gid = get_global_id (0);
484
485   if (gid >= gid_max) return;
486
487   u32 w0[4];
488
489   w0[0] = pws[gid].i[ 0];
490   w0[1] = pws[gid].i[ 1];
491   w0[2] = pws[gid].i[ 2];
492   w0[3] = pws[gid].i[ 3];
493
494   u32 w1[4];
495
496   w1[0] = 0;
497   w1[1] = 0;
498   w1[2] = 0;
499   w1[3] = 0;
500
501   u32 w2[4];
502
503   w2[0] = 0;
504   w2[1] = 0;
505   w2[2] = 0;
506   w2[3] = 0;
507
508   u32 w3[4];
509
510   w3[0] = 0;
511   w3[1] = 0;
512   w3[2] = 0;
513   w3[3] = 0;
514
515   const u32 pw_len = pws[gid].pw_len;
516
517   /**
518    * main
519    */
520
521   __local RC4_KEY rc4_keys[64];
522
523   m09710m (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, oldoffice01_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);
524 }
525
526 __kernel void m09710_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 oldoffice01_t *oldoffice01_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)
527 {
528 }
529
530 __kernel void m09710_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 oldoffice01_t *oldoffice01_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)
531 {
532 }
533
534 __kernel void m09710_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 oldoffice01_t *oldoffice01_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)
535 {
536   /**
537    * base
538    */
539
540   const u32 gid = get_global_id (0);
541
542   if (gid >= gid_max) return;
543
544   u32 w0[4];
545
546   w0[0] = pws[gid].i[ 0];
547   w0[1] = pws[gid].i[ 1];
548   w0[2] = pws[gid].i[ 2];
549   w0[3] = pws[gid].i[ 3];
550
551   u32 w1[4];
552
553   w1[0] = 0;
554   w1[1] = 0;
555   w1[2] = 0;
556   w1[3] = 0;
557
558   u32 w2[4];
559
560   w2[0] = 0;
561   w2[1] = 0;
562   w2[2] = 0;
563   w2[3] = 0;
564
565   u32 w3[4];
566
567   w3[0] = 0;
568   w3[1] = 0;
569   w3[2] = 0;
570   w3[3] = 0;
571
572   const u32 pw_len = pws[gid].pw_len;
573
574   /**
575    * main
576    */
577
578   __local RC4_KEY rc4_keys[64];
579
580   m09710s (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, oldoffice01_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);
581 }
582
583 __kernel void m09710_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 oldoffice01_t *oldoffice01_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)
584 {
585 }
586
587 __kernel void m09710_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 oldoffice01_t *oldoffice01_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)
588 {
589 }