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