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