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