Fix m 60 a 0 by making modified variable non-const
[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_vendor.cl"
12 #include "inc_hash_constants.h"
13 #include "inc_hash_functions.cl"
14 #include "inc_types.cl"
15 #include "inc_common.cl"
16 #include "inc_rp.h"
17 #include "inc_rp.cl"
18 #include "inc_simd.cl"
19
20 typedef struct
21 {
22   u8 S[256];
23
24   u32 wtf_its_faster;
25
26 } RC4_KEY;
27
28 void swap (__local RC4_KEY *rc4_key, const u8 i, const u8 j)
29 {
30   u8 tmp;
31
32   tmp           = rc4_key->S[i];
33   rc4_key->S[i] = rc4_key->S[j];
34   rc4_key->S[j] = tmp;
35 }
36
37 void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
38 {
39   u32 v = 0x03020100;
40   u32 a = 0x04040404;
41
42   __local u32 *ptr = (__local u32 *) rc4_key->S;
43
44   #ifdef _unroll
45   #pragma unroll
46   #endif
47   for (u32 i = 0; i < 64; i++)
48   {
49     *ptr++ = v; v += a;
50   }
51
52   u32 j = 0;
53
54   for (u32 i = 0; i < 16; i++)
55   {
56     u32 idx = i * 16;
57
58     u32 v;
59
60     v = data[0];
61
62     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
63     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
64     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
65     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
66
67     v = data[1];
68
69     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
70     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
71     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
72     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
73
74     v = data[2];
75
76     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
77     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
78     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
79     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
80
81     v = data[3];
82
83     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
84     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
85     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
86     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
87   }
88 }
89
90 u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, const u32 in[4], u32 out[4])
91 {
92   #ifdef _unroll
93   #pragma unroll
94   #endif
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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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_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     u32x w0[4] = { 0 };
299     u32x w1[4] = { 0 };
300     u32x w2[4] = { 0 };
301     u32x w3[4] = { 0 };
302
303     apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
304
305     /**
306      * md5
307      */
308
309     w0[0]  = w0[0];
310     w0[1]  = w0[1] & 0xff;
311     w0[2]  = 0x8000;
312     w0[3]  = 0;
313     w1[0]  = 0;
314     w1[1]  = 0;
315     w1[2]  = 0;
316     w1[3]  = 0;
317     w2[0]  = 0;
318     w2[1]  = 0;
319     w2[2]  = 0;
320     w2[3]  = 0;
321     w3[0]  = 0;
322     w3[1]  = 0;
323     w3[2]  = 9 * 8;
324     w3[3]  = 0;
325
326     u32 digest[4];
327
328     digest[0] = MD5M_A;
329     digest[1] = MD5M_B;
330     digest[2] = MD5M_C;
331     digest[3] = MD5M_D;
332
333     md5_transform (w0, w1, w2, w3, digest);
334
335     // now the RC4 part
336
337     rc4_init_16 (rc4_key, digest);
338
339     u32 out[4];
340
341     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
342
343     w0[0] = out[0];
344     w0[1] = out[1];
345     w0[2] = out[2];
346     w0[3] = out[3];
347     w1[0] = 0x80;
348     w1[1] = 0;
349     w1[2] = 0;
350     w1[3] = 0;
351     w2[0] = 0;
352     w2[1] = 0;
353     w2[2] = 0;
354     w2[3] = 0;
355     w3[0] = 0;
356     w3[1] = 0;
357     w3[2] = 16 * 8;
358     w3[3] = 0;
359
360     digest[0] = MD5M_A;
361     digest[1] = MD5M_B;
362     digest[2] = MD5M_C;
363     digest[3] = MD5M_D;
364
365     md5_transform (w0, w1, w2, w3, digest);
366
367     rc4_next_16 (rc4_key, 16, j, digest, out);
368
369     COMPARE_M_SIMD (out[0], out[1], out[2], out[3]);
370   }
371 }
372
373 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
374 {
375 }
376
377 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
378 {
379 }
380
381 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
382 {
383   /**
384    * modifier
385    */
386
387   const u32 lid = get_local_id (0);
388
389   /**
390    * base
391    */
392
393   const u32 gid = get_global_id (0);
394
395   if (gid >= gid_max) return;
396
397   u32 pw_buf0[4];
398   u32 pw_buf1[4];
399
400   pw_buf0[0] = pws[gid].i[ 0];
401   pw_buf0[1] = pws[gid].i[ 1];
402   pw_buf0[2] = pws[gid].i[ 2];
403   pw_buf0[3] = pws[gid].i[ 3];
404   pw_buf1[0] = pws[gid].i[ 4];
405   pw_buf1[1] = pws[gid].i[ 5];
406   pw_buf1[2] = pws[gid].i[ 6];
407   pw_buf1[3] = pws[gid].i[ 7];
408
409   const u32 pw_len = pws[gid].pw_len;
410
411   /**
412    * shared
413    */
414
415   __local RC4_KEY rc4_keys[64];
416
417   __local RC4_KEY *rc4_key = &rc4_keys[lid];
418
419   /**
420    * esalt
421    */
422
423   const u32 version = oldoffice01_bufs[salt_pos].version;
424
425   u32 encryptedVerifier[4];
426
427   encryptedVerifier[0] = oldoffice01_bufs[salt_pos].encryptedVerifier[0];
428   encryptedVerifier[1] = oldoffice01_bufs[salt_pos].encryptedVerifier[1];
429   encryptedVerifier[2] = oldoffice01_bufs[salt_pos].encryptedVerifier[2];
430   encryptedVerifier[3] = oldoffice01_bufs[salt_pos].encryptedVerifier[3];
431
432   /**
433    * digest
434    */
435
436   const u32 search[4] =
437   {
438     digests_buf[digests_offset].digest_buf[DGST_R0],
439     digests_buf[digests_offset].digest_buf[DGST_R1],
440     digests_buf[digests_offset].digest_buf[DGST_R2],
441     digests_buf[digests_offset].digest_buf[DGST_R3]
442   };
443
444   /**
445    * loop
446    */
447
448   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
449   {
450     u32x w0[4] = { 0 };
451     u32x w1[4] = { 0 };
452     u32x w2[4] = { 0 };
453     u32x w3[4] = { 0 };
454
455     apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
456
457     /**
458      * md5
459      */
460
461     w0[0]  = w0[0];
462     w0[1]  = w0[1] & 0xff;
463     w0[2]  = 0x8000;
464     w0[3]  = 0;
465     w1[0]  = 0;
466     w1[1]  = 0;
467     w1[2]  = 0;
468     w1[3]  = 0;
469     w2[0]  = 0;
470     w2[1]  = 0;
471     w2[2]  = 0;
472     w2[3]  = 0;
473     w3[0]  = 0;
474     w3[1]  = 0;
475     w3[2]  = 9 * 8;
476     w3[3]  = 0;
477
478     u32 digest[4];
479
480     digest[0] = MD5M_A;
481     digest[1] = MD5M_B;
482     digest[2] = MD5M_C;
483     digest[3] = MD5M_D;
484
485     md5_transform (w0, w1, w2, w3, digest);
486
487     // now the RC4 part
488
489     rc4_init_16 (rc4_key, digest);
490
491     u32 out[4];
492
493     u8 j = rc4_next_16 (rc4_key, 0, 0, encryptedVerifier, out);
494
495     w0[0] = out[0];
496     w0[1] = out[1];
497     w0[2] = out[2];
498     w0[3] = out[3];
499     w1[0] = 0x80;
500     w1[1] = 0;
501     w1[2] = 0;
502     w1[3] = 0;
503     w2[0] = 0;
504     w2[1] = 0;
505     w2[2] = 0;
506     w2[3] = 0;
507     w3[0] = 0;
508     w3[1] = 0;
509     w3[2] = 16 * 8;
510     w3[3] = 0;
511
512     digest[0] = MD5M_A;
513     digest[1] = MD5M_B;
514     digest[2] = MD5M_C;
515     digest[3] = MD5M_D;
516
517     md5_transform (w0, w1, w2, w3, digest);
518
519     rc4_next_16 (rc4_key, 16, j, digest, out);
520
521     COMPARE_S_SIMD (out[0], out[1], out[2], out[3]);
522   }
523 }
524
525 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
526 {
527 }
528
529 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
530 {
531 }