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