Initial commit
[hashcat.git] / OpenCL / m13100_a3.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 static void m13100 (__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 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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
552 {
553   /**
554    * modifier
555    */
556
557   const u32 gid = get_global_id (0);
558   const u32 lid = get_local_id (0);
559
560   /**
561    * salt
562    */
563
564   u32 checksum[4];
565
566   checksum[0] = krb5tgs_bufs[salt_pos].checksum[0];
567   checksum[1] = krb5tgs_bufs[salt_pos].checksum[1];
568   checksum[2] = krb5tgs_bufs[salt_pos].checksum[2];
569   checksum[3] = krb5tgs_bufs[salt_pos].checksum[3];
570
571   /**
572    * loop
573    */
574
575   u32 w0l = w0[0];
576
577   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
578   {
579     const u32 w0r = bfs_buf[il_pos].i;
580
581     w0[0] = w0l | w0r;
582
583     u32 digest[4];
584
585     kerb_prepare (w0, w1, pw_len, checksum, digest);
586
587     u32 tmp[4];
588
589     tmp[0] = digest[0];
590     tmp[1] = digest[1];
591     tmp[2] = digest[2];
592     tmp[3] = digest[3];
593
594     if (decrypt_and_check (&rc4_keys[lid], tmp, krb5tgs_bufs[salt_pos].edata2) == 1)
595     {
596       mark_hash (plains_buf, hashes_shown, digests_offset, gid, il_pos);
597
598       d_return_buf[lid] = 1;
599     }
600   }
601 }
602
603 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
604 {
605   /**
606    * base
607    */
608
609   const u32 gid = get_global_id (0);
610   const u32 lid = get_local_id (0);
611
612   if (gid >= gid_max) return;
613
614   u32 w0[4];
615
616   w0[0] = pws[gid].i[ 0];
617   w0[1] = pws[gid].i[ 1];
618   w0[2] = pws[gid].i[ 2];
619   w0[3] = pws[gid].i[ 3];
620
621   u32 w1[4];
622
623   w1[0] = 0;
624   w1[1] = 0;
625   w1[2] = 0;
626   w1[3] = 0;
627
628   u32 w2[4];
629
630   w2[0] = 0;
631   w2[1] = 0;
632   w2[2] = 0;
633   w2[3] = 0;
634
635   u32 w3[4];
636
637   w3[0] = 0;
638   w3[1] = 0;
639   w3[2] = 0;
640   w3[3] = 0;
641
642   const u32 pw_len = pws[gid].pw_len;
643
644   /**
645    * main
646    */
647
648   __local RC4_KEY rc4_keys[64];
649
650   m13100 (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, krb5tgs_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);
651 }
652
653 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
654 {
655   /**
656    * base
657    */
658
659   const u32 gid = get_global_id (0);
660   const u32 lid = get_local_id (0);
661
662   if (gid >= gid_max) return;
663
664   u32 w0[4];
665
666   w0[0] = pws[gid].i[ 0];
667   w0[1] = pws[gid].i[ 1];
668   w0[2] = pws[gid].i[ 2];
669   w0[3] = pws[gid].i[ 3];
670
671   u32 w1[4];
672
673   w1[0] = pws[gid].i[ 4];
674   w1[1] = pws[gid].i[ 5];
675   w1[2] = pws[gid].i[ 6];
676   w1[3] = pws[gid].i[ 7];
677
678   u32 w2[4];
679
680   w2[0] = 0;
681   w2[1] = 0;
682   w2[2] = 0;
683   w2[3] = 0;
684
685   u32 w3[4];
686
687   w3[0] = 0;
688   w3[1] = 0;
689   w3[2] = 0;
690   w3[3] = 0;
691
692   const u32 pw_len = pws[gid].pw_len;
693
694   /**
695    * main
696    */
697
698   __local RC4_KEY rc4_keys[64];
699
700   m13100 (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, krb5tgs_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);
701 }
702
703 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
704 {
705 }
706
707 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
708 {
709   /**
710    * base
711    */
712
713   const u32 gid = get_global_id (0);
714   const u32 lid = get_local_id (0);
715
716   if (gid >= gid_max) return;
717
718   u32 w0[4];
719
720   w0[0] = pws[gid].i[ 0];
721   w0[1] = pws[gid].i[ 1];
722   w0[2] = pws[gid].i[ 2];
723   w0[3] = pws[gid].i[ 3];
724
725   u32 w1[4];
726
727   w1[0] = 0;
728   w1[1] = 0;
729   w1[2] = 0;
730   w1[3] = 0;
731
732   u32 w2[4];
733
734   w2[0] = 0;
735   w2[1] = 0;
736   w2[2] = 0;
737   w2[3] = 0;
738
739   u32 w3[4];
740
741   w3[0] = 0;
742   w3[1] = 0;
743   w3[2] = 0;
744   w3[3] = 0;
745
746   const u32 pw_len = pws[gid].pw_len;
747
748   /**
749    * main
750    */
751
752   __local RC4_KEY rc4_keys[64];
753
754   m13100 (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, krb5tgs_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);
755 }
756
757 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
758 {
759   /**
760    * base
761    */
762
763   const u32 gid = get_global_id (0);
764   const u32 lid = get_local_id (0);
765
766   if (gid >= gid_max) return;
767
768   u32 w0[4];
769
770   w0[0] = pws[gid].i[ 0];
771   w0[1] = pws[gid].i[ 1];
772   w0[2] = pws[gid].i[ 2];
773   w0[3] = pws[gid].i[ 3];
774
775   u32 w1[4];
776
777   w1[0] = pws[gid].i[ 4];
778   w1[1] = pws[gid].i[ 5];
779   w1[2] = pws[gid].i[ 6];
780   w1[3] = pws[gid].i[ 7];
781
782   u32 w2[4];
783
784   w2[0] = 0;
785   w2[1] = 0;
786   w2[2] = 0;
787   w2[3] = 0;
788
789   u32 w3[4];
790
791   w3[0] = 0;
792   w3[1] = 0;
793   w3[2] = 0;
794   w3[3] = 0;
795
796   const u32 pw_len = pws[gid].pw_len;
797
798   /**
799    * main
800    */
801
802   __local RC4_KEY rc4_keys[64];
803
804   m13100 (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, krb5tgs_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);
805 }
806
807 __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
808 {
809 }