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