Fix speed -m 9700, 9710, 9800 and 9810 for NV, also increases some on AMD
[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   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 __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)
241 {
242   /**
243    * modifier
244    */
245
246   const u32 lid = get_local_id (0);
247
248   __local RC4_KEY rc4_keys[64];
249
250   __local RC4_KEY *rc4_key = &rc4_keys[lid];
251
252   /**
253    * base
254    */
255
256   const u32 gid = get_global_id (0);
257
258   if (gid >= gid_max) return;
259
260   u32 wordl0[4];
261
262   wordl0[0] = pws[gid].i[ 0];
263   wordl0[1] = pws[gid].i[ 1];
264   wordl0[2] = pws[gid].i[ 2];
265   wordl0[3] = pws[gid].i[ 3];
266
267   u32 wordl1[4];
268
269   wordl1[0] = pws[gid].i[ 4];
270   wordl1[1] = pws[gid].i[ 5];
271   wordl1[2] = pws[gid].i[ 6];
272   wordl1[3] = pws[gid].i[ 7];
273
274   u32 wordl2[4];
275
276   wordl2[0] = 0;
277   wordl2[1] = 0;
278   wordl2[2] = 0;
279   wordl2[3] = 0;
280
281   u32 wordl3[4];
282
283   wordl3[0] = 0;
284   wordl3[1] = 0;
285   wordl3[2] = 0;
286   wordl3[3] = 0;
287
288   const u32 pw_l_len = pws[gid].pw_len;
289
290   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
291   {
292     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
293   }
294
295   /**
296    * esalt
297    */
298
299   const u32 version = oldoffice01_bufs[salt_pos].version;
300
301   u32 encryptedVerifier[4];
302
303   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
304   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
305   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
306   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
307
308   /**
309    * loop
310    */
311
312   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
313   {
314     const u32 pw_r_len = combs_buf[il_pos].pw_len;
315
316     const u32 pw_len = pw_l_len + pw_r_len;
317
318     u32 wordr0[4];
319
320     wordr0[0] = combs_buf[il_pos].i[0];
321     wordr0[1] = combs_buf[il_pos].i[1];
322     wordr0[2] = combs_buf[il_pos].i[2];
323     wordr0[3] = combs_buf[il_pos].i[3];
324
325     u32 wordr1[4];
326
327     wordr1[0] = combs_buf[il_pos].i[4];
328     wordr1[1] = combs_buf[il_pos].i[5];
329     wordr1[2] = combs_buf[il_pos].i[6];
330     wordr1[3] = combs_buf[il_pos].i[7];
331
332     u32 wordr2[4];
333
334     wordr2[0] = 0;
335     wordr2[1] = 0;
336     wordr2[2] = 0;
337     wordr2[3] = 0;
338
339     u32 wordr3[4];
340
341     wordr3[0] = 0;
342     wordr3[1] = 0;
343     wordr3[2] = 0;
344     wordr3[3] = 0;
345
346     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
347     {
348       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
349     }
350
351     // first md5 to generate RC4 128 bit key
352
353     u32 w0_t[4];
354     u32 w1_t[4];
355     u32 w2_t[4];
356     u32 w3_t[4];
357
358     w0_t[0]  =  wordl0[0] | wordr0[0];
359     w0_t[1]  = (wordl0[1] | wordr0[1]) & 0xff;
360     w0_t[2]  = 0x8000;
361     w0_t[3]  = 0;
362     w1_t[0]  = 0;
363     w1_t[1]  = 0;
364     w1_t[2]  = 0;
365     w1_t[3]  = 0;
366     w2_t[0]  = 0;
367     w2_t[1]  = 0;
368     w2_t[2]  = 0;
369     w2_t[3]  = 0;
370     w3_t[0]  = 0;
371     w3_t[1]  = 0;
372     w3_t[2]  = 9 * 8;
373     w3_t[3]  = 0;
374
375     u32 digest[4];
376
377     digest[0] = MD5M_A;
378     digest[1] = MD5M_B;
379     digest[2] = MD5M_C;
380     digest[3] = MD5M_D;
381
382     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
383
384     // now the RC4 part
385
386     u32 key[4];
387
388     key[0] = digest[0];
389     key[1] = digest[1];
390     key[2] = digest[2];
391     key[3] = digest[3];
392
393     rc4_init_16 (rc4_key, key);
394
395     u32 out[4];
396
397     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
398
399     w0_t[0] = out[0];
400     w0_t[1] = out[1];
401     w0_t[2] = out[2];
402     w0_t[3] = out[3];
403     w1_t[0] = 0x80;
404     w1_t[1] = 0;
405     w1_t[2] = 0;
406     w1_t[3] = 0;
407     w2_t[0] = 0;
408     w2_t[1] = 0;
409     w2_t[2] = 0;
410     w2_t[3] = 0;
411     w3_t[0] = 0;
412     w3_t[1] = 0;
413     w3_t[2] = 16 * 8;
414     w3_t[3] = 0;
415
416     digest[0] = MD5M_A;
417     digest[1] = MD5M_B;
418     digest[2] = MD5M_C;
419     digest[3] = MD5M_D;
420
421     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
422
423     rc4_next_16 (rc4_key, 16, j, digest, out);
424
425     const u32 r0 = out[0];
426     const u32 r1 = out[1];
427     const u32 r2 = out[2];
428     const u32 r3 = out[3];
429
430     #include COMPARE_M
431   }
432 }
433
434 __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)
435 {
436 }
437
438 __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)
439 {
440 }
441
442 __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)
443 {
444   /**
445    * modifier
446    */
447
448   const u32 lid = get_local_id (0);
449
450   __local RC4_KEY rc4_keys[64];
451
452   __local RC4_KEY *rc4_key = &rc4_keys[lid];
453
454   /**
455    * base
456    */
457
458   const u32 gid = get_global_id (0);
459
460   if (gid >= gid_max) return;
461
462   u32 wordl0[4];
463
464   wordl0[0] = pws[gid].i[ 0];
465   wordl0[1] = pws[gid].i[ 1];
466   wordl0[2] = pws[gid].i[ 2];
467   wordl0[3] = pws[gid].i[ 3];
468
469   u32 wordl1[4];
470
471   wordl1[0] = pws[gid].i[ 4];
472   wordl1[1] = pws[gid].i[ 5];
473   wordl1[2] = pws[gid].i[ 6];
474   wordl1[3] = pws[gid].i[ 7];
475
476   u32 wordl2[4];
477
478   wordl2[0] = 0;
479   wordl2[1] = 0;
480   wordl2[2] = 0;
481   wordl2[3] = 0;
482
483   u32 wordl3[4];
484
485   wordl3[0] = 0;
486   wordl3[1] = 0;
487   wordl3[2] = 0;
488   wordl3[3] = 0;
489
490   const u32 pw_l_len = pws[gid].pw_len;
491
492   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
493   {
494     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
495   }
496
497   /**
498    * digest
499    */
500
501   const u32 search[4] =
502   {
503     digests_buf[digests_offset].digest_buf[DGST_R0],
504     digests_buf[digests_offset].digest_buf[DGST_R1],
505     digests_buf[digests_offset].digest_buf[DGST_R2],
506     digests_buf[digests_offset].digest_buf[DGST_R3]
507   };
508
509   /**
510    * esalt
511    */
512
513   const u32 version = oldoffice01_bufs[salt_pos].version;
514
515   u32 encryptedVerifier[4];
516
517   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
518   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
519   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
520   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
521
522   /**
523    * loop
524    */
525
526   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
527   {
528     const u32 pw_r_len = combs_buf[il_pos].pw_len;
529
530     const u32 pw_len = pw_l_len + pw_r_len;
531
532     u32 wordr0[4];
533
534     wordr0[0] = combs_buf[il_pos].i[0];
535     wordr0[1] = combs_buf[il_pos].i[1];
536     wordr0[2] = combs_buf[il_pos].i[2];
537     wordr0[3] = combs_buf[il_pos].i[3];
538
539     u32 wordr1[4];
540
541     wordr1[0] = combs_buf[il_pos].i[4];
542     wordr1[1] = combs_buf[il_pos].i[5];
543     wordr1[2] = combs_buf[il_pos].i[6];
544     wordr1[3] = combs_buf[il_pos].i[7];
545
546     u32 wordr2[4];
547
548     wordr2[0] = 0;
549     wordr2[1] = 0;
550     wordr2[2] = 0;
551     wordr2[3] = 0;
552
553     u32 wordr3[4];
554
555     wordr3[0] = 0;
556     wordr3[1] = 0;
557     wordr3[2] = 0;
558     wordr3[3] = 0;
559
560     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
561     {
562       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
563     }
564
565     // first md5 to generate RC4 128 bit key
566
567     u32 w0_t[4];
568     u32 w1_t[4];
569     u32 w2_t[4];
570     u32 w3_t[4];
571
572     w0_t[0]  =  wordl0[0] | wordr0[0];
573     w0_t[1]  = (wordl0[1] | wordr0[1]) & 0xff;
574     w0_t[2]  = 0x8000;
575     w0_t[3]  = 0;
576     w1_t[0]  = 0;
577     w1_t[1]  = 0;
578     w1_t[2]  = 0;
579     w1_t[3]  = 0;
580     w2_t[0]  = 0;
581     w2_t[1]  = 0;
582     w2_t[2]  = 0;
583     w2_t[3]  = 0;
584     w3_t[0]  = 0;
585     w3_t[1]  = 0;
586     w3_t[2]  = 9 * 8;
587     w3_t[3]  = 0;
588
589     u32 digest[4];
590
591     digest[0] = MD5M_A;
592     digest[1] = MD5M_B;
593     digest[2] = MD5M_C;
594     digest[3] = MD5M_D;
595
596     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
597
598     // now the RC4 part
599
600     u32 key[4];
601
602     key[0] = digest[0];
603     key[1] = digest[1];
604     key[2] = digest[2];
605     key[3] = digest[3];
606
607     rc4_init_16 (rc4_key, key);
608
609     u32 out[4];
610
611     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
612
613     w0_t[0] = out[0];
614     w0_t[1] = out[1];
615     w0_t[2] = out[2];
616     w0_t[3] = out[3];
617     w1_t[0] = 0x80;
618     w1_t[1] = 0;
619     w1_t[2] = 0;
620     w1_t[3] = 0;
621     w2_t[0] = 0;
622     w2_t[1] = 0;
623     w2_t[2] = 0;
624     w2_t[3] = 0;
625     w3_t[0] = 0;
626     w3_t[1] = 0;
627     w3_t[2] = 16 * 8;
628     w3_t[3] = 0;
629
630     digest[0] = MD5M_A;
631     digest[1] = MD5M_B;
632     digest[2] = MD5M_C;
633     digest[3] = MD5M_D;
634
635     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
636
637     rc4_next_16 (rc4_key, 16, j, digest, out);
638
639     const u32 r0 = out[0];
640     const u32 r1 = out[1];
641     const u32 r2 = out[2];
642     const u32 r3 = out[3];
643
644     #include COMPARE_S
645   }
646 }
647
648 __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)
649 {
650 }
651
652 __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)
653 {
654 }