Unlock kernel_threads > 64
[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 //too much register pressure
9 //#define NEW_SIMD_CODE
10
11 #include "include/constants.h"
12 #include "include/kernel_vendor.h"
13
14 #define DGST_R0 0
15 #define DGST_R1 1
16 #define DGST_R2 2
17 #define DGST_R3 3
18
19 #include "include/kernel_functions.c"
20 #include "OpenCL/types_ocl.c"
21 #include "OpenCL/common.c"
22 #include "OpenCL/simd.c"
23
24 typedef struct
25 {
26   u8 S[256];
27
28   u32 wtf_its_faster;
29
30 } RC4_KEY;
31
32 void swap (__local RC4_KEY *rc4_key, const u8 i, const u8 j)
33 {
34   u8 tmp;
35
36   tmp           = rc4_key->S[i];
37   rc4_key->S[i] = rc4_key->S[j];
38   rc4_key->S[j] = tmp;
39 }
40
41 void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
42 {
43   u32 v = 0x03020100;
44   u32 a = 0x04040404;
45
46   __local u32 *ptr = (__local u32 *) rc4_key->S;
47
48   #pragma unroll
49   for (u32 i = 0; i < 64; i++)
50   {
51     *ptr++ = v; v += a;
52   }
53
54   u32 j = 0;
55
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 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 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 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)
242 {
243   /**
244    * modifier
245    */
246
247   const u32 lid = get_local_id (0);
248
249   /**
250    * base
251    */
252
253   const u32 gid = get_global_id (0);
254
255   if (gid >= gid_max) return;
256
257   u32 pw_buf0[4];
258   u32 pw_buf1[4];
259
260   pw_buf0[0] = pws[gid].i[0];
261   pw_buf0[1] = pws[gid].i[1];
262   pw_buf0[2] = pws[gid].i[2];
263   pw_buf0[3] = pws[gid].i[3];
264   pw_buf1[0] = pws[gid].i[4];
265   pw_buf1[1] = pws[gid].i[5];
266   pw_buf1[2] = pws[gid].i[6];
267   pw_buf1[3] = pws[gid].i[7];
268
269   const u32 pw_l_len = pws[gid].pw_len;
270
271   /**
272    * shared
273    */
274
275   __local RC4_KEY rc4_keys[64];
276
277   __local RC4_KEY *rc4_key = &rc4_keys[lid];
278
279   /**
280    * esalt
281    */
282
283   const u32 version = oldoffice01_bufs[salt_pos].version;
284
285   u32 encryptedVerifier[4];
286
287   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
288   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
289   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
290   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
291
292   /**
293    * loop
294    */
295
296   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
297   {
298     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
299
300     const u32x pw_len = pw_l_len + pw_r_len;
301
302     /**
303      * concat password candidate
304      */
305
306     u32x wordl0[4] = { 0 };
307     u32x wordl1[4] = { 0 };
308     u32x wordl2[4] = { 0 };
309     u32x wordl3[4] = { 0 };
310
311     wordl0[0] = pw_buf0[0];
312     wordl0[1] = pw_buf0[1];
313     wordl0[2] = pw_buf0[2];
314     wordl0[3] = pw_buf0[3];
315     wordl1[0] = pw_buf1[0];
316     wordl1[1] = pw_buf1[1];
317     wordl1[2] = pw_buf1[2];
318     wordl1[3] = pw_buf1[3];
319
320     u32x wordr0[4] = { 0 };
321     u32x wordr1[4] = { 0 };
322     u32x wordr2[4] = { 0 };
323     u32x wordr3[4] = { 0 };
324
325     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
326     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
327     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
328     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
329     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
330     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
331     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
332     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
333
334     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
335     {
336       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
337     }
338     else
339     {
340       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
341     }
342
343     u32x w0[4];
344     u32x w1[4];
345     u32x w2[4];
346     u32x w3[4];
347
348     w0[0] = wordl0[0] | wordr0[0];
349     w0[1] = wordl0[1] | wordr0[1];
350
351     /**
352      * md5
353      */
354
355     w0[0]  = w0[0];
356     w0[1]  = w0[1] & 0xff;
357     w0[2]  = 0x8000;
358     w0[3]  = 0;
359     w1[0]  = 0;
360     w1[1]  = 0;
361     w1[2]  = 0;
362     w1[3]  = 0;
363     w2[0]  = 0;
364     w2[1]  = 0;
365     w2[2]  = 0;
366     w2[3]  = 0;
367     w3[0]  = 0;
368     w3[1]  = 0;
369     w3[2]  = 9 * 8;
370     w3[3]  = 0;
371
372     u32 digest[4];
373
374     digest[0] = MD5M_A;
375     digest[1] = MD5M_B;
376     digest[2] = MD5M_C;
377     digest[3] = MD5M_D;
378
379     md5_transform (w0, w1, w2, w3, digest);
380
381     // now the RC4 part
382
383     rc4_init_16 (rc4_key, digest);
384
385     u32 out[4];
386
387     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
388
389     w0[0] = out[0];
390     w0[1] = out[1];
391     w0[2] = out[2];
392     w0[3] = out[3];
393     w1[0] = 0x80;
394     w1[1] = 0;
395     w1[2] = 0;
396     w1[3] = 0;
397     w2[0] = 0;
398     w2[1] = 0;
399     w2[2] = 0;
400     w2[3] = 0;
401     w3[0] = 0;
402     w3[1] = 0;
403     w3[2] = 16 * 8;
404     w3[3] = 0;
405
406     digest[0] = MD5M_A;
407     digest[1] = MD5M_B;
408     digest[2] = MD5M_C;
409     digest[3] = MD5M_D;
410
411     md5_transform (w0, w1, w2, w3, digest);
412
413     rc4_next_16 (rc4_key, 16, j, digest, out);
414
415     COMPARE_M_SIMD (out[0], out[1], out[2], out[3]);
416   }
417 }
418
419 __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)
420 {
421 }
422
423 __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)
424 {
425 }
426
427 __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)
428 {
429   /**
430    * modifier
431    */
432
433   const u32 lid = get_local_id (0);
434
435   /**
436    * base
437    */
438
439   const u32 gid = get_global_id (0);
440
441   if (gid >= gid_max) return;
442
443   u32 pw_buf0[4];
444   u32 pw_buf1[4];
445
446   pw_buf0[0] = pws[gid].i[0];
447   pw_buf0[1] = pws[gid].i[1];
448   pw_buf0[2] = pws[gid].i[2];
449   pw_buf0[3] = pws[gid].i[3];
450   pw_buf1[0] = pws[gid].i[4];
451   pw_buf1[1] = pws[gid].i[5];
452   pw_buf1[2] = pws[gid].i[6];
453   pw_buf1[3] = pws[gid].i[7];
454
455   const u32 pw_l_len = pws[gid].pw_len;
456
457   /**
458    * shared
459    */
460
461   __local RC4_KEY rc4_keys[64];
462
463   __local RC4_KEY *rc4_key = &rc4_keys[lid];
464
465   /**
466    * esalt
467    */
468
469   const u32 version = oldoffice01_bufs[salt_pos].version;
470
471   u32 encryptedVerifier[4];
472
473   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
474   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
475   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
476   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
477
478   /**
479    * digest
480    */
481
482   const u32 search[4] =
483   {
484     digests_buf[digests_offset].digest_buf[DGST_R0],
485     digests_buf[digests_offset].digest_buf[DGST_R1],
486     digests_buf[digests_offset].digest_buf[DGST_R2],
487     digests_buf[digests_offset].digest_buf[DGST_R3]
488   };
489
490   /**
491    * loop
492    */
493
494   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
495   {
496     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
497
498     const u32x pw_len = pw_l_len + pw_r_len;
499
500     /**
501      * concat password candidate
502      */
503
504     u32x wordl0[4] = { 0 };
505     u32x wordl1[4] = { 0 };
506     u32x wordl2[4] = { 0 };
507     u32x wordl3[4] = { 0 };
508
509     wordl0[0] = pw_buf0[0];
510     wordl0[1] = pw_buf0[1];
511     wordl0[2] = pw_buf0[2];
512     wordl0[3] = pw_buf0[3];
513     wordl1[0] = pw_buf1[0];
514     wordl1[1] = pw_buf1[1];
515     wordl1[2] = pw_buf1[2];
516     wordl1[3] = pw_buf1[3];
517
518     u32x wordr0[4] = { 0 };
519     u32x wordr1[4] = { 0 };
520     u32x wordr2[4] = { 0 };
521     u32x wordr3[4] = { 0 };
522
523     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
524     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
525     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
526     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
527     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
528     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
529     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
530     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
531
532     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
533     {
534       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
535     }
536     else
537     {
538       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
539     }
540
541     u32x w0[4];
542     u32x w1[4];
543     u32x w2[4];
544     u32x w3[4];
545
546     w0[0] = wordl0[0] | wordr0[0];
547     w0[1] = wordl0[1] | wordr0[1];
548
549     /**
550      * md5
551      */
552
553     w0[0]  = w0[0];
554     w0[1]  = w0[1] & 0xff;
555     w0[2]  = 0x8000;
556     w0[3]  = 0;
557     w1[0]  = 0;
558     w1[1]  = 0;
559     w1[2]  = 0;
560     w1[3]  = 0;
561     w2[0]  = 0;
562     w2[1]  = 0;
563     w2[2]  = 0;
564     w2[3]  = 0;
565     w3[0]  = 0;
566     w3[1]  = 0;
567     w3[2]  = 9 * 8;
568     w3[3]  = 0;
569
570     u32 digest[4];
571
572     digest[0] = MD5M_A;
573     digest[1] = MD5M_B;
574     digest[2] = MD5M_C;
575     digest[3] = MD5M_D;
576
577     md5_transform (w0, w1, w2, w3, digest);
578
579     // now the RC4 part
580
581     rc4_init_16 (rc4_key, digest);
582
583     u32 out[4];
584
585     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
586
587     w0[0] = out[0];
588     w0[1] = out[1];
589     w0[2] = out[2];
590     w0[3] = out[3];
591     w1[0] = 0x80;
592     w1[1] = 0;
593     w1[2] = 0;
594     w1[3] = 0;
595     w2[0] = 0;
596     w2[1] = 0;
597     w2[2] = 0;
598     w2[3] = 0;
599     w3[0] = 0;
600     w3[1] = 0;
601     w3[2] = 16 * 8;
602     w3[3] = 0;
603
604     digest[0] = MD5M_A;
605     digest[1] = MD5M_B;
606     digest[2] = MD5M_C;
607     digest[3] = MD5M_D;
608
609     md5_transform (w0, w1, w2, w3, digest);
610
611     rc4_next_16 (rc4_key, 16, j, digest, out);
612
613     COMPARE_S_SIMD (out[0], out[1], out[2], out[3]);
614   }
615 }
616
617 __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)
618 {
619 }
620
621 __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)
622 {
623 }