Initial commit
[hashcat.git] / OpenCL / m13100_a1.cl
1 /**
2  * Authors......: Jens Steube <jens.steube@gmail.com>
3  * Authors......: Fist0urs   <eddy.maaalou@gmail.com>
4
5  * License.....: MIT
6  */
7
8 #define _KRB5TGS_
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, __global 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], __global u32* edata2)
142 {
143   rc4_init_16 (rc4_key, data);
144
145   u32 out[8];
146
147   u8 j = 0;
148
149   /* 
150     8 first bytes are nonce, then ASN1 structs (DER encoding: type-length-data)
151
152     if length >= 128 bytes:
153         length is on 2 bytes and type is \x63\x82 (encode_krb5_enc_tkt_part) and data is an ASN1 sequence \x30\x82
154     else:
155         length is on 1 byte and type is \x63\x81 and data is an ASN1 sequence \x30\x81
156
157     next headers follow the same ASN1 "type-length-data" scheme
158   */
159
160   j = rc4_next_16 (rc4_key,  0, 0, edata2, out);
161
162   if (((out[2] & 0xff00ffff) != 0x30008163) && ((out[2] & 0x0000ffff) != 0x00008263)) return 0;
163
164   j = rc4_next_16 (rc4_key,  16, j, edata2 + 4, out + 4);
165
166   if (((out[4] & 0x00ffffff) != 0x00000503) && (out[4] != 0x050307A0)) return 0;
167
168   // TODO (or not): add RC4'ing of all edata2 then hmac-md5 and compare with 
169   // checksum to be definitely sure that this is the correct pass (even if 
170   // collisions must be very rare)
171
172   return 1;
173 }
174
175 static void md4_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
176 {
177   u32 a = digest[0];
178   u32 b = digest[1];
179   u32 c = digest[2];
180   u32 d = digest[3];
181
182   MD4_STEP (MD4_Fo, a, b, c, d, w0[0], MD4C00, MD4S00);
183   MD4_STEP (MD4_Fo, d, a, b, c, w0[1], MD4C00, MD4S01);
184   MD4_STEP (MD4_Fo, c, d, a, b, w0[2], MD4C00, MD4S02);
185   MD4_STEP (MD4_Fo, b, c, d, a, w0[3], MD4C00, MD4S03);
186   MD4_STEP (MD4_Fo, a, b, c, d, w1[0], MD4C00, MD4S00);
187   MD4_STEP (MD4_Fo, d, a, b, c, w1[1], MD4C00, MD4S01);
188   MD4_STEP (MD4_Fo, c, d, a, b, w1[2], MD4C00, MD4S02);
189   MD4_STEP (MD4_Fo, b, c, d, a, w1[3], MD4C00, MD4S03);
190   MD4_STEP (MD4_Fo, a, b, c, d, w2[0], MD4C00, MD4S00);
191   MD4_STEP (MD4_Fo, d, a, b, c, w2[1], MD4C00, MD4S01);
192   MD4_STEP (MD4_Fo, c, d, a, b, w2[2], MD4C00, MD4S02);
193   MD4_STEP (MD4_Fo, b, c, d, a, w2[3], MD4C00, MD4S03);
194   MD4_STEP (MD4_Fo, a, b, c, d, w3[0], MD4C00, MD4S00);
195   MD4_STEP (MD4_Fo, d, a, b, c, w3[1], MD4C00, MD4S01);
196   MD4_STEP (MD4_Fo, c, d, a, b, w3[2], MD4C00, MD4S02);
197   MD4_STEP (MD4_Fo, b, c, d, a, w3[3], MD4C00, MD4S03);
198
199   MD4_STEP (MD4_Go, a, b, c, d, w0[0], MD4C01, MD4S10);
200   MD4_STEP (MD4_Go, d, a, b, c, w1[0], MD4C01, MD4S11);
201   MD4_STEP (MD4_Go, c, d, a, b, w2[0], MD4C01, MD4S12);
202   MD4_STEP (MD4_Go, b, c, d, a, w3[0], MD4C01, MD4S13);
203   MD4_STEP (MD4_Go, a, b, c, d, w0[1], MD4C01, MD4S10);
204   MD4_STEP (MD4_Go, d, a, b, c, w1[1], MD4C01, MD4S11);
205   MD4_STEP (MD4_Go, c, d, a, b, w2[1], MD4C01, MD4S12);
206   MD4_STEP (MD4_Go, b, c, d, a, w3[1], MD4C01, MD4S13);
207   MD4_STEP (MD4_Go, a, b, c, d, w0[2], MD4C01, MD4S10);
208   MD4_STEP (MD4_Go, d, a, b, c, w1[2], MD4C01, MD4S11);
209   MD4_STEP (MD4_Go, c, d, a, b, w2[2], MD4C01, MD4S12);
210   MD4_STEP (MD4_Go, b, c, d, a, w3[2], MD4C01, MD4S13);
211   MD4_STEP (MD4_Go, a, b, c, d, w0[3], MD4C01, MD4S10);
212   MD4_STEP (MD4_Go, d, a, b, c, w1[3], MD4C01, MD4S11);
213   MD4_STEP (MD4_Go, c, d, a, b, w2[3], MD4C01, MD4S12);
214   MD4_STEP (MD4_Go, b, c, d, a, w3[3], MD4C01, MD4S13);
215
216   MD4_STEP (MD4_H , a, b, c, d, w0[0], MD4C02, MD4S20);
217   MD4_STEP (MD4_H , d, a, b, c, w2[0], MD4C02, MD4S21);
218   MD4_STEP (MD4_H , c, d, a, b, w1[0], MD4C02, MD4S22);
219   MD4_STEP (MD4_H , b, c, d, a, w3[0], MD4C02, MD4S23);
220   MD4_STEP (MD4_H , a, b, c, d, w0[2], MD4C02, MD4S20);
221   MD4_STEP (MD4_H , d, a, b, c, w2[2], MD4C02, MD4S21);
222   MD4_STEP (MD4_H , c, d, a, b, w1[2], MD4C02, MD4S22);
223   MD4_STEP (MD4_H , b, c, d, a, w3[2], MD4C02, MD4S23);
224   MD4_STEP (MD4_H , a, b, c, d, w0[1], MD4C02, MD4S20);
225   MD4_STEP (MD4_H , d, a, b, c, w2[1], MD4C02, MD4S21);
226   MD4_STEP (MD4_H , c, d, a, b, w1[1], MD4C02, MD4S22);
227   MD4_STEP (MD4_H , b, c, d, a, w3[1], MD4C02, MD4S23);
228   MD4_STEP (MD4_H , a, b, c, d, w0[3], MD4C02, MD4S20);
229   MD4_STEP (MD4_H , d, a, b, c, w2[3], MD4C02, MD4S21);
230   MD4_STEP (MD4_H , c, d, a, b, w1[3], MD4C02, MD4S22);
231   MD4_STEP (MD4_H , b, c, d, a, w3[3], MD4C02, MD4S23);
232
233   digest[0] += a;
234   digest[1] += b;
235   digest[2] += c;
236   digest[3] += d;
237 }
238
239 static void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
240 {
241   u32 a = digest[0];
242   u32 b = digest[1];
243   u32 c = digest[2];
244   u32 d = digest[3];
245
246   u32 w0_t = w0[0];
247   u32 w1_t = w0[1];
248   u32 w2_t = w0[2];
249   u32 w3_t = w0[3];
250   u32 w4_t = w1[0];
251   u32 w5_t = w1[1];
252   u32 w6_t = w1[2];
253   u32 w7_t = w1[3];
254   u32 w8_t = w2[0];
255   u32 w9_t = w2[1];
256   u32 wa_t = w2[2];
257   u32 wb_t = w2[3];
258   u32 wc_t = w3[0];
259   u32 wd_t = w3[1];
260   u32 we_t = w3[2];
261   u32 wf_t = w3[3];
262
263   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
264   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
265   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
266   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
267   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
268   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
269   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
270   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
271   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
272   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
273   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
274   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
275   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
276   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
277   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
278   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
279
280   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
281   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
282   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
283   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
284   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
285   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
286   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
287   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
288   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
289   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
290   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
291   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
292   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
293   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
294   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
295   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
296
297   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
298   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
299   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
300   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
301   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
302   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
303   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
304   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
305   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
306   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
307   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
308   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
309   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
310   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
311   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
312   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
313
314   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
315   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
316   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
317   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
318   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
319   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
320   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
321   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
322   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
323   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
324   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
325   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
326   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
327   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
328   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
329   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
330
331   digest[0] += a;
332   digest[1] += b;
333   digest[2] += c;
334   digest[3] += d;
335 }
336
337 static void hmac_md5_pad (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], u32 ipad[4], u32 opad[4])
338 {
339   w0[0] = w0[0] ^ 0x36363636;
340   w0[1] = w0[1] ^ 0x36363636;
341   w0[2] = w0[2] ^ 0x36363636;
342   w0[3] = w0[3] ^ 0x36363636;
343   w1[0] = w1[0] ^ 0x36363636;
344   w1[1] = w1[1] ^ 0x36363636;
345   w1[2] = w1[2] ^ 0x36363636;
346   w1[3] = w1[3] ^ 0x36363636;
347   w2[0] = w2[0] ^ 0x36363636;
348   w2[1] = w2[1] ^ 0x36363636;
349   w2[2] = w2[2] ^ 0x36363636;
350   w2[3] = w2[3] ^ 0x36363636;
351   w3[0] = w3[0] ^ 0x36363636;
352   w3[1] = w3[1] ^ 0x36363636;
353   w3[2] = w3[2] ^ 0x36363636;
354   w3[3] = w3[3] ^ 0x36363636;
355
356   ipad[0] = MD5M_A;
357   ipad[1] = MD5M_B;
358   ipad[2] = MD5M_C;
359   ipad[3] = MD5M_D;
360
361   md5_transform (w0, w1, w2, w3, ipad);
362
363   w0[0] = w0[0] ^ 0x6a6a6a6a;
364   w0[1] = w0[1] ^ 0x6a6a6a6a;
365   w0[2] = w0[2] ^ 0x6a6a6a6a;
366   w0[3] = w0[3] ^ 0x6a6a6a6a;
367   w1[0] = w1[0] ^ 0x6a6a6a6a;
368   w1[1] = w1[1] ^ 0x6a6a6a6a;
369   w1[2] = w1[2] ^ 0x6a6a6a6a;
370   w1[3] = w1[3] ^ 0x6a6a6a6a;
371   w2[0] = w2[0] ^ 0x6a6a6a6a;
372   w2[1] = w2[1] ^ 0x6a6a6a6a;
373   w2[2] = w2[2] ^ 0x6a6a6a6a;
374   w2[3] = w2[3] ^ 0x6a6a6a6a;
375   w3[0] = w3[0] ^ 0x6a6a6a6a;
376   w3[1] = w3[1] ^ 0x6a6a6a6a;
377   w3[2] = w3[2] ^ 0x6a6a6a6a;
378   w3[3] = w3[3] ^ 0x6a6a6a6a;
379
380   opad[0] = MD5M_A;
381   opad[1] = MD5M_B;
382   opad[2] = MD5M_C;
383   opad[3] = MD5M_D;
384
385   md5_transform (w0, w1, w2, w3, opad);
386 }
387
388 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])
389 {
390   digest[0] = ipad[0];
391   digest[1] = ipad[1];
392   digest[2] = ipad[2];
393   digest[3] = ipad[3];
394
395   md5_transform (w0, w1, w2, w3, digest);
396
397   w0[0] = digest[0];
398   w0[1] = digest[1];
399   w0[2] = digest[2];
400   w0[3] = digest[3];
401   w1[0] = 0x80;
402   w1[1] = 0;
403   w1[2] = 0;
404   w1[3] = 0;
405   w2[0] = 0;
406   w2[1] = 0;
407   w2[2] = 0;
408   w2[3] = 0;
409   w3[0] = 0;
410   w3[1] = 0;
411   w3[2] = (64 + 16) * 8;
412   w3[3] = 0;
413
414   digest[0] = opad[0];
415   digest[1] = opad[1];
416   digest[2] = opad[2];
417   digest[3] = opad[3];
418
419   md5_transform (w0, w1, w2, w3, digest);
420 }
421
422 static void kerb_prepare (const u32 w0[4], const u32 w1[4], const u32 pw_len, const u32 checksum[4], u32 digest[4])
423 {
424   /**
425    * pads
426    */
427
428   u32 w0_t[4];
429   u32 w1_t[4];
430   u32 w2_t[4];
431   u32 w3_t[4];
432
433   w0_t[0] = w0[0];
434   w0_t[1] = w0[1];
435   w0_t[2] = w0[2];
436   w0_t[3] = w0[3];
437   w1_t[0] = w1[0];
438   w1_t[1] = w1[1];
439   w1_t[2] = w1[2];
440   w1_t[3] = w1[3];
441   w2_t[0] = 0;
442   w2_t[1] = 0;
443   w2_t[2] = 0;
444   w2_t[3] = 0;
445   w3_t[0] = 0;
446   w3_t[1] = 0;
447   w3_t[2] = 0;
448   w3_t[3] = 0;
449
450   // K=MD4(Little_indian(UNICODE(pwd))
451
452   append_0x80_2x4 (w0_t, w1_t, pw_len);
453
454   make_unicode (w1_t, w2_t, w3_t);
455   make_unicode (w0_t, w0_t, w1_t);
456
457   w3_t[2] = pw_len * 8 * 2;
458   w3_t[3] = 0;
459
460   digest[0] = MD4M_A;
461   digest[1] = MD4M_B;
462   digest[2] = MD4M_C;
463   digest[3] = MD4M_D;
464
465   md4_transform (w0_t, w1_t, w2_t, w3_t, digest);
466
467   // K1=MD5_HMAC(K,1); with 2 encoded as little indian on 4 bytes (02000000 in hexa);
468
469   w0_t[0] = digest[0];
470   w0_t[1] = digest[1];
471   w0_t[2] = digest[2];
472   w0_t[3] = digest[3];
473   w1_t[0] = 0;
474   w1_t[1] = 0;
475   w1_t[2] = 0;
476   w1_t[3] = 0;
477   w2_t[0] = 0;
478   w2_t[1] = 0;
479   w2_t[2] = 0;
480   w2_t[3] = 0;
481   w3_t[0] = 0;
482   w3_t[1] = 0;
483   w3_t[2] = 0;
484   w3_t[3] = 0;
485
486   u32 ipad[4];
487   u32 opad[4];
488
489   hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
490
491   w0_t[0] = 2;
492   w0_t[1] = 0x80;
493   w0_t[2] = 0;
494   w0_t[3] = 0;
495   w1_t[0] = 0;
496   w1_t[1] = 0;
497   w1_t[2] = 0;
498   w1_t[3] = 0;
499   w2_t[0] = 0;
500   w2_t[1] = 0;
501   w2_t[2] = 0;
502   w2_t[3] = 0;
503   w3_t[0] = 0;
504   w3_t[1] = 0;
505   w3_t[2] = (64 + 4) * 8;
506   w3_t[3] = 0;
507
508   hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
509
510   // K3=MD5_HMAC(K1,checksum);
511
512   w0_t[0] = digest[0];
513   w0_t[1] = digest[1];
514   w0_t[2] = digest[2];
515   w0_t[3] = digest[3];
516   w1_t[0] = 0;
517   w1_t[1] = 0;
518   w1_t[2] = 0;
519   w1_t[3] = 0;
520   w2_t[0] = 0;
521   w2_t[1] = 0;
522   w2_t[2] = 0;
523   w2_t[3] = 0;
524   w3_t[0] = 0;
525   w3_t[1] = 0;
526   w3_t[2] = 0;
527   w3_t[3] = 0;
528
529   hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
530
531   w0_t[0] = checksum[0];
532   w0_t[1] = checksum[1];
533   w0_t[2] = checksum[2];
534   w0_t[3] = checksum[3];
535   w1_t[0] = 0x80;
536   w1_t[1] = 0;
537   w1_t[2] = 0;
538   w1_t[3] = 0;
539   w2_t[0] = 0;
540   w2_t[1] = 0;
541   w2_t[2] = 0;
542   w2_t[3] = 0;
543   w3_t[0] = 0;
544   w3_t[1] = 0;
545   w3_t[2] = (64 + 16) * 8;
546   w3_t[3] = 0;
547
548   hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
549 }
550
551 __kernel void m13100_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 krb5tgs_t *krb5tgs_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)
552 {
553   /**
554    * modifier
555    */
556
557   __local RC4_KEY rc4_keys[64];
558
559   const u32 gid = get_global_id (0);
560   const u32 lid = get_local_id (0);
561
562   if (gid >= gid_max) return;
563
564   /**
565    * base
566    */
567
568   u32 wordl0[4];
569
570   wordl0[0] = pws[gid].i[ 0];
571   wordl0[1] = pws[gid].i[ 1];
572   wordl0[2] = pws[gid].i[ 2];
573   wordl0[3] = pws[gid].i[ 3];
574
575   u32 wordl1[4];
576
577   wordl1[0] = pws[gid].i[ 4];
578   wordl1[1] = pws[gid].i[ 5];
579   wordl1[2] = pws[gid].i[ 6];
580   wordl1[3] = pws[gid].i[ 7];
581
582   u32 wordl2[4];
583
584   wordl2[0] = 0;
585   wordl2[1] = 0;
586   wordl2[2] = 0;
587   wordl2[3] = 0;
588
589   u32 wordl3[4];
590
591   wordl3[0] = 0;
592   wordl3[1] = 0;
593   wordl3[2] = 0;
594   wordl3[3] = 0;
595
596   const u32 pw_l_len = pws[gid].pw_len;
597
598   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
599   {
600     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
601   }
602
603   /**
604    * salt
605    */
606
607   u32 checksum[4];
608
609   checksum[0] = krb5tgs_bufs[salt_pos].checksum[0];
610   checksum[1] = krb5tgs_bufs[salt_pos].checksum[1];
611   checksum[2] = krb5tgs_bufs[salt_pos].checksum[2];
612   checksum[3] = krb5tgs_bufs[salt_pos].checksum[3];
613
614   /**
615    * loop
616    */
617
618   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
619   {
620     const u32 pw_r_len = combs_buf[il_pos].pw_len;
621
622     const u32 pw_len = pw_l_len + pw_r_len;
623
624     u32 wordr0[4];
625
626     wordr0[0] = combs_buf[il_pos].i[0];
627     wordr0[1] = combs_buf[il_pos].i[1];
628     wordr0[2] = combs_buf[il_pos].i[2];
629     wordr0[3] = combs_buf[il_pos].i[3];
630
631     u32 wordr1[4];
632
633     wordr1[0] = combs_buf[il_pos].i[4];
634     wordr1[1] = combs_buf[il_pos].i[5];
635     wordr1[2] = combs_buf[il_pos].i[6];
636     wordr1[3] = combs_buf[il_pos].i[7];
637
638     u32 wordr2[4];
639
640     wordr2[0] = 0;
641     wordr2[1] = 0;
642     wordr2[2] = 0;
643     wordr2[3] = 0;
644
645     u32 wordr3[4];
646
647     wordr3[0] = 0;
648     wordr3[1] = 0;
649     wordr3[2] = 0;
650     wordr3[3] = 0;
651
652     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
653     {
654       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
655     }
656
657     u32 w0[4];
658
659     w0[0] = wordl0[0] | wordr0[0];
660     w0[1] = wordl0[1] | wordr0[1];
661     w0[2] = wordl0[2] | wordr0[2];
662     w0[3] = wordl0[3] | wordr0[3];
663
664     u32 w1[4];
665
666     w1[0] = wordl1[0] | wordr1[0];
667     w1[1] = wordl1[1] | wordr1[1];
668     w1[2] = wordl1[2] | wordr1[2];
669     w1[3] = wordl1[3] | wordr1[3];
670
671     u32 w2[4];
672
673     w2[0] = wordl2[0] | wordr2[0];
674     w2[1] = wordl2[1] | wordr2[1];
675     w2[2] = wordl2[2] | wordr2[2];
676     w2[3] = wordl2[3] | wordr2[3];
677
678     u32 w3[4];
679
680     w3[0] = wordl3[0] | wordr3[0];
681     w3[1] = wordl3[1] | wordr3[1];
682     w3[2] = 0;
683     w3[3] = 0;
684
685     /**
686      * kerberos
687      */
688
689     u32 digest[4];
690
691     kerb_prepare (w0, w1, pw_len, checksum, digest);
692
693     u32 tmp[4];
694
695     tmp[0] = digest[0];
696     tmp[1] = digest[1];
697     tmp[2] = digest[2];
698     tmp[3] = digest[3];
699
700     if (decrypt_and_check (&rc4_keys[lid], tmp, krb5tgs_bufs[salt_pos].edata2) == 1)
701     {
702       mark_hash (plains_buf, hashes_shown, digests_offset, gid, il_pos);
703
704       d_return_buf[lid] = 1;
705     }
706   }
707 }
708
709 __kernel void m13100_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 krb5tgs_t *krb5tgs_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)
710 {
711 }
712
713 __kernel void m13100_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 krb5tgs_t *krb5tgs_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)
714 {
715 }
716
717 __kernel void m13100_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 krb5tgs_t *krb5tgs_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)
718 {
719   /**
720    * modifier
721    */
722
723   __local RC4_KEY rc4_keys[64];
724
725   const u32 gid = get_global_id (0);
726   const u32 lid = get_local_id (0);
727
728   if (gid >= gid_max) return;
729
730   /**
731    * base
732    */
733
734   u32 wordl0[4];
735
736   wordl0[0] = pws[gid].i[ 0];
737   wordl0[1] = pws[gid].i[ 1];
738   wordl0[2] = pws[gid].i[ 2];
739   wordl0[3] = pws[gid].i[ 3];
740
741   u32 wordl1[4];
742
743   wordl1[0] = pws[gid].i[ 4];
744   wordl1[1] = pws[gid].i[ 5];
745   wordl1[2] = pws[gid].i[ 6];
746   wordl1[3] = pws[gid].i[ 7];
747
748   u32 wordl2[4];
749
750   wordl2[0] = 0;
751   wordl2[1] = 0;
752   wordl2[2] = 0;
753   wordl2[3] = 0;
754
755   u32 wordl3[4];
756
757   wordl3[0] = 0;
758   wordl3[1] = 0;
759   wordl3[2] = 0;
760   wordl3[3] = 0;
761
762   const u32 pw_l_len = pws[gid].pw_len;
763
764   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
765   {
766     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
767   }
768
769   /**
770    * salt
771    */
772
773   u32 checksum[4];
774
775   checksum[0] = krb5tgs_bufs[salt_pos].checksum[0];
776   checksum[1] = krb5tgs_bufs[salt_pos].checksum[1];
777   checksum[2] = krb5tgs_bufs[salt_pos].checksum[2];
778   checksum[3] = krb5tgs_bufs[salt_pos].checksum[3];
779
780   /**
781    * loop
782    */
783
784   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
785   {
786     const u32 pw_r_len = combs_buf[il_pos].pw_len;
787
788     const u32 pw_len = pw_l_len + pw_r_len;
789
790     u32 wordr0[4];
791
792     wordr0[0] = combs_buf[il_pos].i[0];
793     wordr0[1] = combs_buf[il_pos].i[1];
794     wordr0[2] = combs_buf[il_pos].i[2];
795     wordr0[3] = combs_buf[il_pos].i[3];
796
797     u32 wordr1[4];
798
799     wordr1[0] = combs_buf[il_pos].i[4];
800     wordr1[1] = combs_buf[il_pos].i[5];
801     wordr1[2] = combs_buf[il_pos].i[6];
802     wordr1[3] = combs_buf[il_pos].i[7];
803
804     u32 wordr2[4];
805
806     wordr2[0] = 0;
807     wordr2[1] = 0;
808     wordr2[2] = 0;
809     wordr2[3] = 0;
810
811     u32 wordr3[4];
812
813     wordr3[0] = 0;
814     wordr3[1] = 0;
815     wordr3[2] = 0;
816     wordr3[3] = 0;
817
818     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
819     {
820       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
821     }
822
823     u32 w0[4];
824
825     w0[0] = wordl0[0] | wordr0[0];
826     w0[1] = wordl0[1] | wordr0[1];
827     w0[2] = wordl0[2] | wordr0[2];
828     w0[3] = wordl0[3] | wordr0[3];
829
830     u32 w1[4];
831
832     w1[0] = wordl1[0] | wordr1[0];
833     w1[1] = wordl1[1] | wordr1[1];
834     w1[2] = wordl1[2] | wordr1[2];
835     w1[3] = wordl1[3] | wordr1[3];
836
837     u32 w2[4];
838
839     w2[0] = wordl2[0] | wordr2[0];
840     w2[1] = wordl2[1] | wordr2[1];
841     w2[2] = wordl2[2] | wordr2[2];
842     w2[3] = wordl2[3] | wordr2[3];
843
844     u32 w3[4];
845
846     w3[0] = wordl3[0] | wordr3[0];
847     w3[1] = wordl3[1] | wordr3[1];
848     w3[2] = 0;
849     w3[3] = 0;
850
851     /**
852      * kerberos
853      */
854
855     u32 digest[4];
856
857     kerb_prepare (w0, w1, pw_len, checksum, digest);
858
859     u32 tmp[4];
860
861     tmp[0] = digest[0];
862     tmp[1] = digest[1];
863     tmp[2] = digest[2];
864     tmp[3] = digest[3];
865
866     if (decrypt_and_check (&rc4_keys[lid], tmp, krb5tgs_bufs[salt_pos].edata2) == 1)
867     {
868       mark_hash (plains_buf, hashes_shown, digests_offset, gid, il_pos);
869
870       d_return_buf[lid] = 1;
871     }
872   }
873 }
874
875 __kernel void m13100_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 krb5tgs_t *krb5tgs_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)
876 {
877 }
878
879 __kernel void m13100_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 krb5tgs_t *krb5tgs_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)
880 {
881 }