- Added inline declaration to functions from simd.c, common.c, rp.c and types_ocl...
[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 //shared mem too small
11 //#define NEW_SIMD_CODE
12
13 #include "include/constants.h"
14 #include "include/kernel_vendor.h"
15
16 #define DGST_R0 0
17 #define DGST_R1 1
18 #define DGST_R2 2
19 #define DGST_R3 3
20
21 #include "include/kernel_functions.c"
22 #include "OpenCL/types_ocl.c"
23 #include "OpenCL/common.c"
24 #include "OpenCL/simd.c"
25
26 typedef struct
27 {
28   u8 S[256];
29
30   u32 wtf_its_faster;
31
32 } RC4_KEY;
33
34 void swap (__local RC4_KEY *rc4_key, const u8 i, const u8 j)
35 {
36   u8 tmp;
37
38   tmp           = rc4_key->S[i];
39   rc4_key->S[i] = rc4_key->S[j];
40   rc4_key->S[j] = tmp;
41 }
42
43 void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
44 {
45   u32 v = 0x03020100;
46   u32 a = 0x04040404;
47
48   __local u32 *ptr = (__local u32 *) rc4_key->S;
49
50   #pragma unroll
51   for (u32 i = 0; i < 64; i++)
52   {
53     *ptr++ = v; v += a;
54   }
55
56   u32 j = 0;
57
58   for (u32 i = 0; i < 16; i++)
59   {
60     u32 idx = i * 16;
61
62     u32 v;
63
64     v = data[0];
65
66     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
67     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
68     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
69     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
70
71     v = data[1];
72
73     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
74     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
75     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
76     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
77
78     v = data[2];
79
80     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
81     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
82     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
83     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
84
85     v = data[3];
86
87     j += rc4_key->S[idx] + (v >>  0); swap (rc4_key, idx, j); idx++;
88     j += rc4_key->S[idx] + (v >>  8); swap (rc4_key, idx, j); idx++;
89     j += rc4_key->S[idx] + (v >> 16); swap (rc4_key, idx, j); idx++;
90     j += rc4_key->S[idx] + (v >> 24); swap (rc4_key, idx, j); idx++;
91   }
92 }
93
94 u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, const u32 in[4], u32 out[4])
95 {
96   #pragma unroll
97   for (u32 k = 0; k < 4; k++)
98   {
99     u32 xor4 = 0;
100
101     u8 idx;
102
103     i += 1;
104     j += rc4_key->S[i];
105
106     swap (rc4_key, i, j);
107
108     idx = rc4_key->S[i] + rc4_key->S[j];
109
110     xor4 |= rc4_key->S[idx] <<  0;
111
112     i += 1;
113     j += rc4_key->S[i];
114
115     swap (rc4_key, i, j);
116
117     idx = rc4_key->S[i] + rc4_key->S[j];
118
119     xor4 |= rc4_key->S[idx] <<  8;
120
121     i += 1;
122     j += rc4_key->S[i];
123
124     swap (rc4_key, i, j);
125
126     idx = rc4_key->S[i] + rc4_key->S[j];
127
128     xor4 |= rc4_key->S[idx] << 16;
129
130     i += 1;
131     j += rc4_key->S[i];
132
133     swap (rc4_key, i, j);
134
135     idx = rc4_key->S[i] + rc4_key->S[j];
136
137     xor4 |= rc4_key->S[idx] << 24;
138
139     out[k] = in[k] ^ xor4;
140   }
141
142   return j;
143 }
144
145 int decrypt_and_check (__local RC4_KEY *rc4_key, u32 data[4], u32 timestamp_ct[8])
146 {
147   rc4_init_16 (rc4_key, data);
148
149   u32 out[4];
150
151   u8 j = 0;
152
153   j = rc4_next_16 (rc4_key,  0, j, timestamp_ct + 0, out);
154
155   if ((out[3] & 0xffff0000) != 0x30320000) return 0;
156
157   j = rc4_next_16 (rc4_key, 16, j, timestamp_ct + 4, out);
158
159   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0; out[0] >>= 8;
160   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0; out[0] >>= 8;
161   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0; out[0] >>= 8;
162   if (((out[0] & 0xff) < '0') || ((out[0] & 0xff) > '9')) return 0;
163   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0; out[1] >>= 8;
164   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0; out[1] >>= 8;
165   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0; out[1] >>= 8;
166   if (((out[1] & 0xff) < '0') || ((out[1] & 0xff) > '9')) return 0;
167   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0; out[2] >>= 8;
168   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0; out[2] >>= 8;
169   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0; out[2] >>= 8;
170   if (((out[2] & 0xff) < '0') || ((out[2] & 0xff) > '9')) return 0;
171
172   return 1;
173 }
174
175 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 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 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 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 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 1 encoded as little indian on 4 bytes (01000000 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] = 1;
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 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 il_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] = krb5pa_bufs[salt_pos].checksum[0];
567   checksum[1] = krb5pa_bufs[salt_pos].checksum[1];
568   checksum[2] = krb5pa_bufs[salt_pos].checksum[2];
569   checksum[3] = krb5pa_bufs[salt_pos].checksum[3];
570
571   u32 timestamp_ct[8];
572
573   timestamp_ct[0] = krb5pa_bufs[salt_pos].timestamp[0];
574   timestamp_ct[1] = krb5pa_bufs[salt_pos].timestamp[1];
575   timestamp_ct[2] = krb5pa_bufs[salt_pos].timestamp[2];
576   timestamp_ct[3] = krb5pa_bufs[salt_pos].timestamp[3];
577   timestamp_ct[4] = krb5pa_bufs[salt_pos].timestamp[4];
578   timestamp_ct[5] = krb5pa_bufs[salt_pos].timestamp[5];
579   timestamp_ct[6] = krb5pa_bufs[salt_pos].timestamp[6];
580   timestamp_ct[7] = krb5pa_bufs[salt_pos].timestamp[7];
581
582   /**
583    * loop
584    */
585
586   u32 w0l = w0[0];
587
588   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
589   {
590     const u32x w0r = ix_create_bft (bfs_buf, il_pos);
591
592     const u32x w0lr = w0l | w0r;
593
594     u32x w0_t[4];
595     u32x w1_t[4];
596     u32x w2_t[4];
597     u32x w3_t[4];
598
599     w0_t[0] = w0lr;
600     w0_t[1] = w0[1];
601     w0_t[2] = w0[2];
602     w0_t[3] = w0[3];
603     w1_t[0] = w1[0];
604     w1_t[1] = w1[1];
605     w1_t[2] = w1[2];
606     w1_t[3] = w1[3];
607     w2_t[0] = w2[0];
608     w2_t[1] = w2[1];
609     w2_t[2] = w2[2];
610     w2_t[3] = w2[3];
611     w3_t[0] = w3[0];
612     w3_t[1] = w3[1];
613     w3_t[2] = w3[2];
614     w3_t[3] = w3[3];
615
616     /**
617      * kerberos
618      */
619
620     u32 digest[4];
621
622     kerb_prepare (w0_t, w1_t, pw_len, checksum, digest);
623
624     u32 tmp[4];
625
626     tmp[0] = digest[0];
627     tmp[1] = digest[1];
628     tmp[2] = digest[2];
629     tmp[3] = digest[3];
630
631     if (decrypt_and_check (&rc4_keys[lid], tmp, timestamp_ct) == 1)
632     {
633       mark_hash (plains_buf, hashes_shown, digests_offset, gid, il_pos);
634
635       d_return_buf[lid] = 1;
636     }
637   }
638 }
639
640 __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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
641 {
642   /**
643    * base
644    */
645
646   const u32 gid = get_global_id (0);
647   const u32 lid = get_local_id (0);
648
649   if (gid >= gid_max) return;
650
651   u32 w0[4];
652
653   w0[0] = pws[gid].i[ 0];
654   w0[1] = pws[gid].i[ 1];
655   w0[2] = pws[gid].i[ 2];
656   w0[3] = pws[gid].i[ 3];
657
658   u32 w1[4];
659
660   w1[0] = 0;
661   w1[1] = 0;
662   w1[2] = 0;
663   w1[3] = 0;
664
665   u32 w2[4];
666
667   w2[0] = 0;
668   w2[1] = 0;
669   w2[2] = 0;
670   w2[3] = 0;
671
672   u32 w3[4];
673
674   w3[0] = 0;
675   w3[1] = 0;
676   w3[2] = 0;
677   w3[3] = 0;
678
679   const u32 pw_len = pws[gid].pw_len;
680
681   /**
682    * main
683    */
684
685   __local RC4_KEY rc4_keys[64];
686
687   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, il_cnt, digests_cnt, digests_offset);
688 }
689
690 __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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
691 {
692   /**
693    * base
694    */
695
696   const u32 gid = get_global_id (0);
697   const u32 lid = get_local_id (0);
698
699   if (gid >= gid_max) return;
700
701   u32 w0[4];
702
703   w0[0] = pws[gid].i[ 0];
704   w0[1] = pws[gid].i[ 1];
705   w0[2] = pws[gid].i[ 2];
706   w0[3] = pws[gid].i[ 3];
707
708   u32 w1[4];
709
710   w1[0] = pws[gid].i[ 4];
711   w1[1] = pws[gid].i[ 5];
712   w1[2] = pws[gid].i[ 6];
713   w1[3] = pws[gid].i[ 7];
714
715   u32 w2[4];
716
717   w2[0] = 0;
718   w2[1] = 0;
719   w2[2] = 0;
720   w2[3] = 0;
721
722   u32 w3[4];
723
724   w3[0] = 0;
725   w3[1] = 0;
726   w3[2] = 0;
727   w3[3] = 0;
728
729   const u32 pw_len = pws[gid].pw_len;
730
731   /**
732    * main
733    */
734
735   __local RC4_KEY rc4_keys[64];
736
737   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, il_cnt, digests_cnt, digests_offset);
738 }
739
740 __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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
741 {
742 }
743
744 __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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
745 {
746   /**
747    * base
748    */
749
750   const u32 gid = get_global_id (0);
751   const u32 lid = get_local_id (0);
752
753   if (gid >= gid_max) return;
754
755   u32 w0[4];
756
757   w0[0] = pws[gid].i[ 0];
758   w0[1] = pws[gid].i[ 1];
759   w0[2] = pws[gid].i[ 2];
760   w0[3] = pws[gid].i[ 3];
761
762   u32 w1[4];
763
764   w1[0] = 0;
765   w1[1] = 0;
766   w1[2] = 0;
767   w1[3] = 0;
768
769   u32 w2[4];
770
771   w2[0] = 0;
772   w2[1] = 0;
773   w2[2] = 0;
774   w2[3] = 0;
775
776   u32 w3[4];
777
778   w3[0] = 0;
779   w3[1] = 0;
780   w3[2] = 0;
781   w3[3] = 0;
782
783   const u32 pw_len = pws[gid].pw_len;
784
785   /**
786    * main
787    */
788
789   __local RC4_KEY rc4_keys[64];
790
791   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, il_cnt, digests_cnt, digests_offset);
792 }
793
794 __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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
795 {
796   /**
797    * base
798    */
799
800   const u32 gid = get_global_id (0);
801   const u32 lid = get_local_id (0);
802
803   if (gid >= gid_max) return;
804
805   u32 w0[4];
806
807   w0[0] = pws[gid].i[ 0];
808   w0[1] = pws[gid].i[ 1];
809   w0[2] = pws[gid].i[ 2];
810   w0[3] = pws[gid].i[ 3];
811
812   u32 w1[4];
813
814   w1[0] = pws[gid].i[ 4];
815   w1[1] = pws[gid].i[ 5];
816   w1[2] = pws[gid].i[ 6];
817   w1[3] = pws[gid].i[ 7];
818
819   u32 w2[4];
820
821   w2[0] = 0;
822   w2[1] = 0;
823   w2[2] = 0;
824   w2[3] = 0;
825
826   u32 w3[4];
827
828   w3[0] = 0;
829   w3[1] = 0;
830   w3[2] = 0;
831   w3[3] = 0;
832
833   const u32 pw_len = pws[gid].pw_len;
834
835   /**
836    * main
837    */
838
839   __local RC4_KEY rc4_keys[64];
840
841   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, il_cnt, digests_cnt, digests_offset);
842 }
843
844 __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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
845 {
846 }