040abd5f90aee49c42149641b4b5ccb4f685c78d
[hashcat.git] / OpenCL / m09710_a0.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 "inc_hash_constants.h"
12 #include "inc_vendor.cl"
13
14 #define DGST_R0 0
15 #define DGST_R1 1
16 #define DGST_R2 2
17 #define DGST_R3 3
18
19 #include "inc_hash_functions.cl"
20 #include "inc_types.cl"
21 #include "inc_common.cl"
22 #include "inc_rp.h"
23 #include "inc_rp.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 __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)
248 {
249   /**
250    * modifier
251    */
252
253   const u32 lid = get_local_id (0);
254
255   /**
256    * base
257    */
258
259   const u32 gid = get_global_id (0);
260
261   if (gid >= gid_max) return;
262
263   u32 pw_buf0[4];
264   u32 pw_buf1[4];
265
266   pw_buf0[0] = pws[gid].i[ 0];
267   pw_buf0[1] = pws[gid].i[ 1];
268   pw_buf0[2] = pws[gid].i[ 2];
269   pw_buf0[3] = pws[gid].i[ 3];
270   pw_buf1[0] = pws[gid].i[ 4];
271   pw_buf1[1] = pws[gid].i[ 5];
272   pw_buf1[2] = pws[gid].i[ 6];
273   pw_buf1[3] = pws[gid].i[ 7];
274
275   const u32 pw_len = pws[gid].pw_len;
276
277   /**
278    * shared
279    */
280
281   __local RC4_KEY rc4_keys[64];
282
283   __local RC4_KEY *rc4_key = &rc4_keys[lid];
284
285   /**
286    * esalt
287    */
288
289   const u32 version = oldoffice01_bufs[salt_pos].version;
290
291   u32 encryptedVerifier[4];
292
293   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
294   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
295   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
296   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
297
298   /**
299    * loop
300    */
301
302   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
303   {
304     u32x w0[4] = { 0 };
305     u32x w1[4] = { 0 };
306     u32x w2[4] = { 0 };
307     u32x w3[4] = { 0 };
308
309     apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
310
311     /**
312      * md5
313      */
314
315     w0[0]  = w0[0];
316     w0[1]  = w0[1] & 0xff;
317     w0[2]  = 0x8000;
318     w0[3]  = 0;
319     w1[0]  = 0;
320     w1[1]  = 0;
321     w1[2]  = 0;
322     w1[3]  = 0;
323     w2[0]  = 0;
324     w2[1]  = 0;
325     w2[2]  = 0;
326     w2[3]  = 0;
327     w3[0]  = 0;
328     w3[1]  = 0;
329     w3[2]  = 9 * 8;
330     w3[3]  = 0;
331
332     u32 digest[4];
333
334     digest[0] = MD5M_A;
335     digest[1] = MD5M_B;
336     digest[2] = MD5M_C;
337     digest[3] = MD5M_D;
338
339     md5_transform (w0, w1, w2, w3, digest);
340
341     // now the RC4 part
342
343     rc4_init_16 (rc4_key, digest);
344
345     u32 out[4];
346
347     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
348
349     w0[0] = out[0];
350     w0[1] = out[1];
351     w0[2] = out[2];
352     w0[3] = out[3];
353     w1[0] = 0x80;
354     w1[1] = 0;
355     w1[2] = 0;
356     w1[3] = 0;
357     w2[0] = 0;
358     w2[1] = 0;
359     w2[2] = 0;
360     w2[3] = 0;
361     w3[0] = 0;
362     w3[1] = 0;
363     w3[2] = 16 * 8;
364     w3[3] = 0;
365
366     digest[0] = MD5M_A;
367     digest[1] = MD5M_B;
368     digest[2] = MD5M_C;
369     digest[3] = MD5M_D;
370
371     md5_transform (w0, w1, w2, w3, digest);
372
373     rc4_next_16 (rc4_key, 16, j, digest, out);
374
375     COMPARE_M_SIMD (out[0], out[1], out[2], out[3]);
376   }
377 }
378
379 __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)
380 {
381 }
382
383 __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)
384 {
385 }
386
387 __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)
388 {
389   /**
390    * modifier
391    */
392
393   const u32 lid = get_local_id (0);
394
395   /**
396    * base
397    */
398
399   const u32 gid = get_global_id (0);
400
401   if (gid >= gid_max) return;
402
403   u32 pw_buf0[4];
404   u32 pw_buf1[4];
405
406   pw_buf0[0] = pws[gid].i[ 0];
407   pw_buf0[1] = pws[gid].i[ 1];
408   pw_buf0[2] = pws[gid].i[ 2];
409   pw_buf0[3] = pws[gid].i[ 3];
410   pw_buf1[0] = pws[gid].i[ 4];
411   pw_buf1[1] = pws[gid].i[ 5];
412   pw_buf1[2] = pws[gid].i[ 6];
413   pw_buf1[3] = pws[gid].i[ 7];
414
415   const u32 pw_len = pws[gid].pw_len;
416
417   /**
418    * shared
419    */
420
421   __local RC4_KEY rc4_keys[64];
422
423   __local RC4_KEY *rc4_key = &rc4_keys[lid];
424
425   /**
426    * esalt
427    */
428
429   const u32 version = oldoffice01_bufs[salt_pos].version;
430
431   u32 encryptedVerifier[4];
432
433   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
434   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
435   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
436   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
437
438   /**
439    * digest
440    */
441
442   const u32 search[4] =
443   {
444     digests_buf[digests_offset].digest_buf[DGST_R0],
445     digests_buf[digests_offset].digest_buf[DGST_R1],
446     digests_buf[digests_offset].digest_buf[DGST_R2],
447     digests_buf[digests_offset].digest_buf[DGST_R3]
448   };
449
450   /**
451    * loop
452    */
453
454   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
455   {
456     u32x w0[4] = { 0 };
457     u32x w1[4] = { 0 };
458     u32x w2[4] = { 0 };
459     u32x w3[4] = { 0 };
460
461     apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
462
463     /**
464      * md5
465      */
466
467     w0[0]  = w0[0];
468     w0[1]  = w0[1] & 0xff;
469     w0[2]  = 0x8000;
470     w0[3]  = 0;
471     w1[0]  = 0;
472     w1[1]  = 0;
473     w1[2]  = 0;
474     w1[3]  = 0;
475     w2[0]  = 0;
476     w2[1]  = 0;
477     w2[2]  = 0;
478     w2[3]  = 0;
479     w3[0]  = 0;
480     w3[1]  = 0;
481     w3[2]  = 9 * 8;
482     w3[3]  = 0;
483
484     u32 digest[4];
485
486     digest[0] = MD5M_A;
487     digest[1] = MD5M_B;
488     digest[2] = MD5M_C;
489     digest[3] = MD5M_D;
490
491     md5_transform (w0, w1, w2, w3, digest);
492
493     // now the RC4 part
494
495     rc4_init_16 (rc4_key, digest);
496
497     u32 out[4];
498
499     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
500
501     w0[0] = out[0];
502     w0[1] = out[1];
503     w0[2] = out[2];
504     w0[3] = out[3];
505     w1[0] = 0x80;
506     w1[1] = 0;
507     w1[2] = 0;
508     w1[3] = 0;
509     w2[0] = 0;
510     w2[1] = 0;
511     w2[2] = 0;
512     w2[3] = 0;
513     w3[0] = 0;
514     w3[1] = 0;
515     w3[2] = 16 * 8;
516     w3[3] = 0;
517
518     digest[0] = MD5M_A;
519     digest[1] = MD5M_B;
520     digest[2] = MD5M_C;
521     digest[3] = MD5M_D;
522
523     md5_transform (w0, w1, w2, w3, digest);
524
525     rc4_next_16 (rc4_key, 16, j, digest, out);
526
527     COMPARE_S_SIMD (out[0], out[1], out[2], out[3]);
528   }
529 }
530
531 __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)
532 {
533 }
534
535 __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)
536 {
537 }