Fixed all gpu code (see PR #179 for details)
[hashcat.git] / OpenCL / m07500_a3.cl
1 /**
2  * Authors.....: Jens Steube <jens.steube@gmail.com>
3  *               Gabriele Gristina <matrix@hashcat.net>
4  *
5  * License.....: MIT
6  */
7
8 #define _KRB5PA_
9
10 #include "include/constants.h"
11 #include "include/kernel_vendor.h"
12
13 #define DGST_R0 0
14 #define DGST_R1 1
15 #define DGST_R2 2
16 #define DGST_R3 3
17
18 #include "include/kernel_functions.c"
19 #include "OpenCL/types_ocl.c"
20 #include "OpenCL/common.c"
21
22 typedef struct
23 {
24   u8 S[256];
25
26   u32 wtf_its_faster;
27
28 } RC4_KEY;
29
30 static void swap (__local RC4_KEY *rc4_key, const u8 i, const u8 j)
31 {
32   u8 tmp;
33
34   tmp           = rc4_key->S[i];
35   rc4_key->S[i] = rc4_key->S[j];
36   rc4_key->S[j] = tmp;
37 }
38
39 static void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
40 {
41   u32 v = 0x03020100;
42   u32 a = 0x04040404;
43
44   __local u32 *ptr = (__local u32 *) rc4_key->S;
45
46   #pragma unroll
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 static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, const u32 in[4], u32 out[4])
91 {
92   #pragma unroll
93   for (u32 k = 0; k < 4; k++)
94   {
95     u32 xor4 = 0;
96
97     u8 idx;
98
99     i += 1;
100     j += rc4_key->S[i];
101
102     swap (rc4_key, i, j);
103
104     idx = rc4_key->S[i] + rc4_key->S[j];
105
106     xor4 |= rc4_key->S[idx] <<  0;
107
108     i += 1;
109     j += rc4_key->S[i];
110
111     swap (rc4_key, i, j);
112
113     idx = rc4_key->S[i] + rc4_key->S[j];
114
115     xor4 |= rc4_key->S[idx] <<  8;
116
117     i += 1;
118     j += rc4_key->S[i];
119
120     swap (rc4_key, i, j);
121
122     idx = rc4_key->S[i] + rc4_key->S[j];
123
124     xor4 |= rc4_key->S[idx] << 16;
125
126     i += 1;
127     j += rc4_key->S[i];
128
129     swap (rc4_key, i, j);
130
131     idx = rc4_key->S[i] + rc4_key->S[j];
132
133     xor4 |= rc4_key->S[idx] << 24;
134
135     out[k] = in[k] ^ xor4;
136   }
137
138   return j;
139 }
140
141 static int decrypt_and_check (__local RC4_KEY *rc4_key, u32 data[4], u32 timestamp_ct[8])
142 {
143   rc4_init_16 (rc4_key, data);
144
145   u32 out[4];
146
147   u8 j = 0;
148
149   j = rc4_next_16 (rc4_key,  0, j, timestamp_ct + 0, out);
150
151   if ((out[3] & 0xffff0000) != 0x30320000) return 0;
152
153   j = rc4_next_16 (rc4_key, 16, j, timestamp_ct + 4, out);
154
155   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0; out[0] >>= 8;
156   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0; out[0] >>= 8;
157   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0; out[0] >>= 8;
158   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0;
159   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0; out[1] >>= 8;
160   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0; out[1] >>= 8;
161   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0; out[1] >>= 8;
162   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0;
163   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0; out[2] >>= 8;
164   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0; out[2] >>= 8;
165   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0; out[2] >>= 8;
166   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0;
167
168   return 1;
169 }
170
171 static void md4_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
172 {
173   u32 a = digest[0];
174   u32 b = digest[1];
175   u32 c = digest[2];
176   u32 d = digest[3];
177
178   MD4_STEP (MD4_Fo, a, b, c, d, w0[0], MD4C00, MD4S00);
179   MD4_STEP (MD4_Fo, d, a, b, c, w0[1], MD4C00, MD4S01);
180   MD4_STEP (MD4_Fo, c, d, a, b, w0[2], MD4C00, MD4S02);
181   MD4_STEP (MD4_Fo, b, c, d, a, w0[3], MD4C00, MD4S03);
182   MD4_STEP (MD4_Fo, a, b, c, d, w1[0], MD4C00, MD4S00);
183   MD4_STEP (MD4_Fo, d, a, b, c, w1[1], MD4C00, MD4S01);
184   MD4_STEP (MD4_Fo, c, d, a, b, w1[2], MD4C00, MD4S02);
185   MD4_STEP (MD4_Fo, b, c, d, a, w1[3], MD4C00, MD4S03);
186   MD4_STEP (MD4_Fo, a, b, c, d, w2[0], MD4C00, MD4S00);
187   MD4_STEP (MD4_Fo, d, a, b, c, w2[1], MD4C00, MD4S01);
188   MD4_STEP (MD4_Fo, c, d, a, b, w2[2], MD4C00, MD4S02);
189   MD4_STEP (MD4_Fo, b, c, d, a, w2[3], MD4C00, MD4S03);
190   MD4_STEP (MD4_Fo, a, b, c, d, w3[0], MD4C00, MD4S00);
191   MD4_STEP (MD4_Fo, d, a, b, c, w3[1], MD4C00, MD4S01);
192   MD4_STEP (MD4_Fo, c, d, a, b, w3[2], MD4C00, MD4S02);
193   MD4_STEP (MD4_Fo, b, c, d, a, w3[3], MD4C00, MD4S03);
194
195   MD4_STEP (MD4_Go, a, b, c, d, w0[0], MD4C01, MD4S10);
196   MD4_STEP (MD4_Go, d, a, b, c, w1[0], MD4C01, MD4S11);
197   MD4_STEP (MD4_Go, c, d, a, b, w2[0], MD4C01, MD4S12);
198   MD4_STEP (MD4_Go, b, c, d, a, w3[0], MD4C01, MD4S13);
199   MD4_STEP (MD4_Go, a, b, c, d, w0[1], MD4C01, MD4S10);
200   MD4_STEP (MD4_Go, d, a, b, c, w1[1], MD4C01, MD4S11);
201   MD4_STEP (MD4_Go, c, d, a, b, w2[1], MD4C01, MD4S12);
202   MD4_STEP (MD4_Go, b, c, d, a, w3[1], MD4C01, MD4S13);
203   MD4_STEP (MD4_Go, a, b, c, d, w0[2], MD4C01, MD4S10);
204   MD4_STEP (MD4_Go, d, a, b, c, w1[2], MD4C01, MD4S11);
205   MD4_STEP (MD4_Go, c, d, a, b, w2[2], MD4C01, MD4S12);
206   MD4_STEP (MD4_Go, b, c, d, a, w3[2], MD4C01, MD4S13);
207   MD4_STEP (MD4_Go, a, b, c, d, w0[3], MD4C01, MD4S10);
208   MD4_STEP (MD4_Go, d, a, b, c, w1[3], MD4C01, MD4S11);
209   MD4_STEP (MD4_Go, c, d, a, b, w2[3], MD4C01, MD4S12);
210   MD4_STEP (MD4_Go, b, c, d, a, w3[3], MD4C01, MD4S13);
211
212   MD4_STEP (MD4_H , a, b, c, d, w0[0], MD4C02, MD4S20);
213   MD4_STEP (MD4_H , d, a, b, c, w2[0], MD4C02, MD4S21);
214   MD4_STEP (MD4_H , c, d, a, b, w1[0], MD4C02, MD4S22);
215   MD4_STEP (MD4_H , b, c, d, a, w3[0], MD4C02, MD4S23);
216   MD4_STEP (MD4_H , a, b, c, d, w0[2], MD4C02, MD4S20);
217   MD4_STEP (MD4_H , d, a, b, c, w2[2], MD4C02, MD4S21);
218   MD4_STEP (MD4_H , c, d, a, b, w1[2], MD4C02, MD4S22);
219   MD4_STEP (MD4_H , b, c, d, a, w3[2], MD4C02, MD4S23);
220   MD4_STEP (MD4_H , a, b, c, d, w0[1], MD4C02, MD4S20);
221   MD4_STEP (MD4_H , d, a, b, c, w2[1], MD4C02, MD4S21);
222   MD4_STEP (MD4_H , c, d, a, b, w1[1], MD4C02, MD4S22);
223   MD4_STEP (MD4_H , b, c, d, a, w3[1], MD4C02, MD4S23);
224   MD4_STEP (MD4_H , a, b, c, d, w0[3], MD4C02, MD4S20);
225   MD4_STEP (MD4_H , d, a, b, c, w2[3], MD4C02, MD4S21);
226   MD4_STEP (MD4_H , c, d, a, b, w1[3], MD4C02, MD4S22);
227   MD4_STEP (MD4_H , b, c, d, a, w3[3], MD4C02, MD4S23);
228
229   digest[0] += a;
230   digest[1] += b;
231   digest[2] += c;
232   digest[3] += d;
233 }
234
235 static void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
236 {
237   u32 a = digest[0];
238   u32 b = digest[1];
239   u32 c = digest[2];
240   u32 d = digest[3];
241
242   u32 w0_t = w0[0];
243   u32 w1_t = w0[1];
244   u32 w2_t = w0[2];
245   u32 w3_t = w0[3];
246   u32 w4_t = w1[0];
247   u32 w5_t = w1[1];
248   u32 w6_t = w1[2];
249   u32 w7_t = w1[3];
250   u32 w8_t = w2[0];
251   u32 w9_t = w2[1];
252   u32 wa_t = w2[2];
253   u32 wb_t = w2[3];
254   u32 wc_t = w3[0];
255   u32 wd_t = w3[1];
256   u32 we_t = w3[2];
257   u32 wf_t = w3[3];
258
259   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
260   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
261   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
262   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
263   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
264   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
265   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
266   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
267   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
268   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
269   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
270   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
271   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
272   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
273   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
274   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
275
276   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
277   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
278   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
279   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
280   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
281   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
282   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
283   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
284   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
285   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
286   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
287   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
288   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
289   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
290   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
291   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
292
293   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
294   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
295   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
296   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
297   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
298   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
299   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
300   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
301   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
302   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
303   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
304   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
305   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
306   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
307   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
308   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
309
310   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
311   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
312   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
313   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
314   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
315   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
316   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
317   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
318   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
319   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
320   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
321   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
322   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
323   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
324   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
325   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
326
327   digest[0] += a;
328   digest[1] += b;
329   digest[2] += c;
330   digest[3] += d;
331 }
332
333 static void hmac_md5_pad (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], u32 ipad[4], u32 opad[4])
334 {
335   w0[0] = w0[0] ^ 0x36363636;
336   w0[1] = w0[1] ^ 0x36363636;
337   w0[2] = w0[2] ^ 0x36363636;
338   w0[3] = w0[3] ^ 0x36363636;
339   w1[0] = w1[0] ^ 0x36363636;
340   w1[1] = w1[1] ^ 0x36363636;
341   w1[2] = w1[2] ^ 0x36363636;
342   w1[3] = w1[3] ^ 0x36363636;
343   w2[0] = w2[0] ^ 0x36363636;
344   w2[1] = w2[1] ^ 0x36363636;
345   w2[2] = w2[2] ^ 0x36363636;
346   w2[3] = w2[3] ^ 0x36363636;
347   w3[0] = w3[0] ^ 0x36363636;
348   w3[1] = w3[1] ^ 0x36363636;
349   w3[2] = w3[2] ^ 0x36363636;
350   w3[3] = w3[3] ^ 0x36363636;
351
352   ipad[0] = MD5M_A;
353   ipad[1] = MD5M_B;
354   ipad[2] = MD5M_C;
355   ipad[3] = MD5M_D;
356
357   md5_transform (w0, w1, w2, w3, ipad);
358
359   w0[0] = w0[0] ^ 0x6a6a6a6a;
360   w0[1] = w0[1] ^ 0x6a6a6a6a;
361   w0[2] = w0[2] ^ 0x6a6a6a6a;
362   w0[3] = w0[3] ^ 0x6a6a6a6a;
363   w1[0] = w1[0] ^ 0x6a6a6a6a;
364   w1[1] = w1[1] ^ 0x6a6a6a6a;
365   w1[2] = w1[2] ^ 0x6a6a6a6a;
366   w1[3] = w1[3] ^ 0x6a6a6a6a;
367   w2[0] = w2[0] ^ 0x6a6a6a6a;
368   w2[1] = w2[1] ^ 0x6a6a6a6a;
369   w2[2] = w2[2] ^ 0x6a6a6a6a;
370   w2[3] = w2[3] ^ 0x6a6a6a6a;
371   w3[0] = w3[0] ^ 0x6a6a6a6a;
372   w3[1] = w3[1] ^ 0x6a6a6a6a;
373   w3[2] = w3[2] ^ 0x6a6a6a6a;
374   w3[3] = w3[3] ^ 0x6a6a6a6a;
375
376   opad[0] = MD5M_A;
377   opad[1] = MD5M_B;
378   opad[2] = MD5M_C;
379   opad[3] = MD5M_D;
380
381   md5_transform (w0, w1, w2, w3, opad);
382 }
383
384 static void hmac_md5_run (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], u32 ipad[4], u32 opad[4], u32 digest[4])
385 {
386   digest[0] = ipad[0];
387   digest[1] = ipad[1];
388   digest[2] = ipad[2];
389   digest[3] = ipad[3];
390
391   md5_transform (w0, w1, w2, w3, digest);
392
393   w0[0] = digest[0];
394   w0[1] = digest[1];
395   w0[2] = digest[2];
396   w0[3] = digest[3];
397   w1[0] = 0x80;
398   w1[1] = 0;
399   w1[2] = 0;
400   w1[3] = 0;
401   w2[0] = 0;
402   w2[1] = 0;
403   w2[2] = 0;
404   w2[3] = 0;
405   w3[0] = 0;
406   w3[1] = 0;
407   w3[2] = (64 + 16) * 8;
408   w3[3] = 0;
409
410   digest[0] = opad[0];
411   digest[1] = opad[1];
412   digest[2] = opad[2];
413   digest[3] = opad[3];
414
415   md5_transform (w0, w1, w2, w3, digest);
416 }
417
418 static void kerb_prepare (const u32 w0[4], const u32 w1[4], const u32 pw_len, const u32 checksum[4], u32 digest[4])
419 {
420   /**
421    * pads
422    */
423
424   u32 w0_t[4];
425   u32 w1_t[4];
426   u32 w2_t[4];
427   u32 w3_t[4];
428
429   w0_t[0] = w0[0];
430   w0_t[1] = w0[1];
431   w0_t[2] = w0[2];
432   w0_t[3] = w0[3];
433   w1_t[0] = w1[0];
434   w1_t[1] = w1[1];
435   w1_t[2] = w1[2];
436   w1_t[3] = w1[3];
437   w2_t[0] = 0;
438   w2_t[1] = 0;
439   w2_t[2] = 0;
440   w2_t[3] = 0;
441   w3_t[0] = 0;
442   w3_t[1] = 0;
443   w3_t[2] = 0;
444   w3_t[3] = 0;
445
446   // K=MD4(Little_indian(UNICODE(pwd))
447
448   append_0x80_2x4 (w0_t, w1_t, pw_len);
449
450   make_unicode (w1_t, w2_t, w3_t);
451   make_unicode (w0_t, w0_t, w1_t);
452
453   w3_t[2] = pw_len * 8 * 2;
454   w3_t[3] = 0;
455
456   digest[0] = MD4M_A;
457   digest[1] = MD4M_B;
458   digest[2] = MD4M_C;
459   digest[3] = MD4M_D;
460
461   md4_transform (w0_t, w1_t, w2_t, w3_t, digest);
462
463   // K1=MD5_HMAC(K,1); with 1 encoded as little indian on 4 bytes (01000000 in hexa);
464
465   w0_t[0] = digest[0];
466   w0_t[1] = digest[1];
467   w0_t[2] = digest[2];
468   w0_t[3] = digest[3];
469   w1_t[0] = 0;
470   w1_t[1] = 0;
471   w1_t[2] = 0;
472   w1_t[3] = 0;
473   w2_t[0] = 0;
474   w2_t[1] = 0;
475   w2_t[2] = 0;
476   w2_t[3] = 0;
477   w3_t[0] = 0;
478   w3_t[1] = 0;
479   w3_t[2] = 0;
480   w3_t[3] = 0;
481
482   u32 ipad[4];
483   u32 opad[4];
484
485   hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
486
487   w0_t[0] = 1;
488   w0_t[1] = 0x80;
489   w0_t[2] = 0;
490   w0_t[3] = 0;
491   w1_t[0] = 0;
492   w1_t[1] = 0;
493   w1_t[2] = 0;
494   w1_t[3] = 0;
495   w2_t[0] = 0;
496   w2_t[1] = 0;
497   w2_t[2] = 0;
498   w2_t[3] = 0;
499   w3_t[0] = 0;
500   w3_t[1] = 0;
501   w3_t[2] = (64 + 4) * 8;
502   w3_t[3] = 0;
503
504   hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
505
506   // K3=MD5_HMAC(K1,checksum);
507
508   w0_t[0] = digest[0];
509   w0_t[1] = digest[1];
510   w0_t[2] = digest[2];
511   w0_t[3] = digest[3];
512   w1_t[0] = 0;
513   w1_t[1] = 0;
514   w1_t[2] = 0;
515   w1_t[3] = 0;
516   w2_t[0] = 0;
517   w2_t[1] = 0;
518   w2_t[2] = 0;
519   w2_t[3] = 0;
520   w3_t[0] = 0;
521   w3_t[1] = 0;
522   w3_t[2] = 0;
523   w3_t[3] = 0;
524
525   hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
526
527   w0_t[0] = checksum[0];
528   w0_t[1] = checksum[1];
529   w0_t[2] = checksum[2];
530   w0_t[3] = checksum[3];
531   w1_t[0] = 0x80;
532   w1_t[1] = 0;
533   w1_t[2] = 0;
534   w1_t[3] = 0;
535   w2_t[0] = 0;
536   w2_t[1] = 0;
537   w2_t[2] = 0;
538   w2_t[3] = 0;
539   w3_t[0] = 0;
540   w3_t[1] = 0;
541   w3_t[2] = (64 + 16) * 8;
542   w3_t[3] = 0;
543
544   hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
545 }
546
547 static void m07500 (__local RC4_KEY *rc4_keys, u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], const u32 pw_len, __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 krb5pa_t *krb5pa_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
548 {
549   /**
550    * modifier
551    */
552
553   const u32 gid = get_global_id (0);
554   const u32 lid = get_local_id (0);
555
556   /**
557    * salt
558    */
559
560   u32 checksum[4];
561
562   checksum[0] = krb5pa_bufs[salt_pos].checksum[0];
563   checksum[1] = krb5pa_bufs[salt_pos].checksum[1];
564   checksum[2] = krb5pa_bufs[salt_pos].checksum[2];
565   checksum[3] = krb5pa_bufs[salt_pos].checksum[3];
566
567   u32 timestamp_ct[8];
568
569   timestamp_ct[0] = krb5pa_bufs[salt_pos].timestamp[0];
570   timestamp_ct[1] = krb5pa_bufs[salt_pos].timestamp[1];
571   timestamp_ct[2] = krb5pa_bufs[salt_pos].timestamp[2];
572   timestamp_ct[3] = krb5pa_bufs[salt_pos].timestamp[3];
573   timestamp_ct[4] = krb5pa_bufs[salt_pos].timestamp[4];
574   timestamp_ct[5] = krb5pa_bufs[salt_pos].timestamp[5];
575   timestamp_ct[6] = krb5pa_bufs[salt_pos].timestamp[6];
576   timestamp_ct[7] = krb5pa_bufs[salt_pos].timestamp[7];
577
578   /**
579    * loop
580    */
581
582   u32 w0l = w0[0];
583
584   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
585   {
586     const u32 w0r = bfs_buf[il_pos].i;
587
588     w0[0] = w0l | w0r;
589
590     u32 digest[4];
591
592     kerb_prepare (w0, w1, pw_len, checksum, digest);
593
594     u32 tmp[4];
595
596     tmp[0] = digest[0];
597     tmp[1] = digest[1];
598     tmp[2] = digest[2];
599     tmp[3] = digest[3];
600
601     if (decrypt_and_check (&rc4_keys[lid], tmp, timestamp_ct) == 1)
602     {
603       mark_hash (plains_buf, hashes_shown, digests_offset, gid, il_pos);
604
605       d_return_buf[lid] = 1;
606     }
607   }
608 }
609
610 __kernel void m07500_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 krb5pa_t *krb5pa_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
611 {
612   /**
613    * base
614    */
615
616   const u32 gid = get_global_id (0);
617   const u32 lid = get_local_id (0);
618
619   if (gid >= gid_max) return;
620
621   u32 w0[4];
622
623   w0[0] = pws[gid].i[ 0];
624   w0[1] = pws[gid].i[ 1];
625   w0[2] = pws[gid].i[ 2];
626   w0[3] = pws[gid].i[ 3];
627
628   u32 w1[4];
629
630   w1[0] = 0;
631   w1[1] = 0;
632   w1[2] = 0;
633   w1[3] = 0;
634
635   u32 w2[4];
636
637   w2[0] = 0;
638   w2[1] = 0;
639   w2[2] = 0;
640   w2[3] = 0;
641
642   u32 w3[4];
643
644   w3[0] = 0;
645   w3[1] = 0;
646   w3[2] = 0;
647   w3[3] = 0;
648
649   const u32 pw_len = pws[gid].pw_len;
650
651   /**
652    * main
653    */
654
655   __local RC4_KEY rc4_keys[64];
656
657   m07500 (rc4_keys, w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, krb5pa_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
658 }
659
660 __kernel void m07500_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 krb5pa_t *krb5pa_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
661 {
662   /**
663    * base
664    */
665
666   const u32 gid = get_global_id (0);
667   const u32 lid = get_local_id (0);
668
669   if (gid >= gid_max) return;
670
671   u32 w0[4];
672
673   w0[0] = pws[gid].i[ 0];
674   w0[1] = pws[gid].i[ 1];
675   w0[2] = pws[gid].i[ 2];
676   w0[3] = pws[gid].i[ 3];
677
678   u32 w1[4];
679
680   w1[0] = pws[gid].i[ 4];
681   w1[1] = pws[gid].i[ 5];
682   w1[2] = pws[gid].i[ 6];
683   w1[3] = pws[gid].i[ 7];
684
685   u32 w2[4];
686
687   w2[0] = 0;
688   w2[1] = 0;
689   w2[2] = 0;
690   w2[3] = 0;
691
692   u32 w3[4];
693
694   w3[0] = 0;
695   w3[1] = 0;
696   w3[2] = 0;
697   w3[3] = 0;
698
699   const u32 pw_len = pws[gid].pw_len;
700
701   /**
702    * main
703    */
704
705   __local RC4_KEY rc4_keys[64];
706
707   m07500 (rc4_keys, w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, krb5pa_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
708 }
709
710 __kernel void m07500_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 krb5pa_t *krb5pa_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
711 {
712 }
713
714 __kernel void m07500_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 krb5pa_t *krb5pa_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
715 {
716   /**
717    * base
718    */
719
720   const u32 gid = get_global_id (0);
721   const u32 lid = get_local_id (0);
722
723   if (gid >= gid_max) return;
724
725   u32 w0[4];
726
727   w0[0] = pws[gid].i[ 0];
728   w0[1] = pws[gid].i[ 1];
729   w0[2] = pws[gid].i[ 2];
730   w0[3] = pws[gid].i[ 3];
731
732   u32 w1[4];
733
734   w1[0] = 0;
735   w1[1] = 0;
736   w1[2] = 0;
737   w1[3] = 0;
738
739   u32 w2[4];
740
741   w2[0] = 0;
742   w2[1] = 0;
743   w2[2] = 0;
744   w2[3] = 0;
745
746   u32 w3[4];
747
748   w3[0] = 0;
749   w3[1] = 0;
750   w3[2] = 0;
751   w3[3] = 0;
752
753   const u32 pw_len = pws[gid].pw_len;
754
755   /**
756    * main
757    */
758
759   __local RC4_KEY rc4_keys[64];
760
761   m07500 (rc4_keys, w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, krb5pa_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
762 }
763
764 __kernel void m07500_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 krb5pa_t *krb5pa_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
765 {
766   /**
767    * base
768    */
769
770   const u32 gid = get_global_id (0);
771   const u32 lid = get_local_id (0);
772
773   if (gid >= gid_max) return;
774
775   u32 w0[4];
776
777   w0[0] = pws[gid].i[ 0];
778   w0[1] = pws[gid].i[ 1];
779   w0[2] = pws[gid].i[ 2];
780   w0[3] = pws[gid].i[ 3];
781
782   u32 w1[4];
783
784   w1[0] = pws[gid].i[ 4];
785   w1[1] = pws[gid].i[ 5];
786   w1[2] = pws[gid].i[ 6];
787   w1[3] = pws[gid].i[ 7];
788
789   u32 w2[4];
790
791   w2[0] = 0;
792   w2[1] = 0;
793   w2[2] = 0;
794   w2[3] = 0;
795
796   u32 w3[4];
797
798   w3[0] = 0;
799   w3[1] = 0;
800   w3[2] = 0;
801   w3[3] = 0;
802
803   const u32 pw_len = pws[gid].pw_len;
804
805   /**
806    * main
807    */
808
809   __local RC4_KEY rc4_keys[64];
810
811   m07500 (rc4_keys, w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, krb5pa_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
812 }
813
814 __kernel void m07500_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 krb5pa_t *krb5pa_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
815 {
816 }