Initial commit
[hashcat.git] / amd / m10420_a0.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
7
8 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #ifdef  VLIW1
12 #define VECT_SIZE1
13 #endif
14
15 #ifdef  VLIW4
16 #define VECT_SIZE2
17 #endif
18
19 #ifdef  VLIW5
20 #define VECT_SIZE2
21 #endif
22
23 #define DGST_R0 0
24 #define DGST_R1 1
25 #define DGST_R2 2
26 #define DGST_R3 3
27
28 #include "include/kernel_functions.c"
29 #include "types_amd.c"
30 #include "common_amd.c"
31 #include "include/rp_gpu.h"
32 #include "rp_amd.c"
33
34 #ifdef  VECT_SIZE1
35 #define VECT_COMPARE_S "check_single_vect1_comp4.c"
36 #define VECT_COMPARE_M "check_multi_vect1_comp4.c"
37 #endif
38
39 #ifdef  VECT_SIZE2
40 #define VECT_COMPARE_S "check_single_vect2_comp4.c"
41 #define VECT_COMPARE_M "check_multi_vect2_comp4.c"
42 #endif
43
44 #ifdef  VECT_SIZE4
45 #define VECT_COMPARE_S "check_single_vect4_comp4.c"
46 #define VECT_COMPARE_M "check_multi_vect4_comp4.c"
47 #endif
48
49 __constant u32 padding[8] =
50 {
51   0x5e4ebf28,
52   0x418a754e,
53   0x564e0064,
54   0x0801faff,
55   0xb6002e2e,
56   0x803e68d0,
57   0xfea90c2f,
58   0x7a695364
59 };
60
61 static void md5_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u32x digest[4])
62 {
63   u32x a = digest[0];
64   u32x b = digest[1];
65   u32x c = digest[2];
66   u32x d = digest[3];
67
68   u32x w0_t = w0[0];
69   u32x w1_t = w0[1];
70   u32x w2_t = w0[2];
71   u32x w3_t = w0[3];
72   u32x w4_t = w1[0];
73   u32x w5_t = w1[1];
74   u32x w6_t = w1[2];
75   u32x w7_t = w1[3];
76   u32x w8_t = w2[0];
77   u32x w9_t = w2[1];
78   u32x wa_t = w2[2];
79   u32x wb_t = w2[3];
80   u32x wc_t = w3[0];
81   u32x wd_t = w3[1];
82   u32x we_t = w3[2];
83   u32x wf_t = w3[3];
84
85   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
86   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
87   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
88   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
89   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
90   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
91   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
92   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
93   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
94   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
95   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
96   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
97   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
98   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
99   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
100   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
101
102   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
103   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
104   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
105   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
106   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
107   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
108   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
109   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
110   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
111   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
112   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
113   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
114   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
115   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
116   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
117   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
118
119   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
120   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
121   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
122   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
123   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
124   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
125   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
126   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
127   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
128   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
129   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
130   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
131   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
132   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
133   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
134   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
135
136   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
137   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
138   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
139   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
140   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
141   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
142   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
143   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
144   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
145   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
146   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
147   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
148   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
149   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
150   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
151   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
152
153   digest[0] += a;
154   digest[1] += b;
155   digest[2] += c;
156   digest[3] += d;
157 }
158
159 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10420_m04 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
160 {
161   /**
162    * modifier
163    */
164
165   const u32 lid = get_local_id (0);
166
167   /**
168    * base
169    */
170
171   const u32 gid = get_global_id (0);
172
173   if (gid >= gid_max) return;
174
175   u32x pw_buf0[4];
176
177   pw_buf0[0] = pws[gid].i[ 0];
178   pw_buf0[1] = pws[gid].i[ 1];
179   pw_buf0[2] = pws[gid].i[ 2];
180   pw_buf0[3] = pws[gid].i[ 3];
181
182   u32x pw_buf1[4];
183
184   pw_buf1[0] = pws[gid].i[ 4];
185   pw_buf1[1] = pws[gid].i[ 5];
186   pw_buf1[2] = pws[gid].i[ 6];
187   pw_buf1[3] = pws[gid].i[ 7];
188
189   const u32 pw_len = pws[gid].pw_len;
190
191   /**
192    * U_buf
193    */
194
195   u32 o_buf[8];
196
197   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
198   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
199   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
200   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
201   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
202   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
203   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
204   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
205
206   u32 P = pdf_bufs[salt_pos].P;
207
208   u32 id_buf[4];
209
210   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
211   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
212   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
213   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
214
215   /**
216    * loop
217    */
218
219   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
220   {
221     u32x w0[4];
222
223     w0[0] = pw_buf0[0];
224     w0[1] = pw_buf0[1];
225     w0[2] = pw_buf0[2];
226     w0[3] = pw_buf0[3];
227
228     u32x w1[4];
229
230     w1[0] = pw_buf1[0];
231     w1[1] = pw_buf1[1];
232     w1[2] = pw_buf1[2];
233     w1[3] = pw_buf1[3];
234
235     u32x w2[4];
236
237     w2[0] = 0;
238     w2[1] = 0;
239     w2[2] = 0;
240     w2[3] = 0;
241
242     u32x w3[4];
243
244     w3[0] = 0;
245     w3[1] = 0;
246     w3[2] = 0;
247     w3[3] = 0;
248
249     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
250
251     u32x w0_t[4];
252     u32x w1_t[4];
253     u32x w2_t[4];
254     u32x w3_t[4];
255
256     // max length supported by pdf11 is 32
257
258     w0_t[0] = padding[0];
259     w0_t[1] = padding[1];
260     w0_t[2] = padding[2];
261     w0_t[3] = padding[3];
262     w1_t[0] = padding[4];
263     w1_t[1] = padding[5];
264     w1_t[2] = padding[6];
265     w1_t[3] = padding[7];
266     w2_t[0] = 0;
267     w2_t[1] = 0;
268     w2_t[2] = 0;
269     w2_t[3] = 0;
270     w3_t[0] = 0;
271     w3_t[1] = 0;
272     w3_t[2] = 0;
273     w3_t[3] = 0;
274
275     switch_buffer_by_offset (w0_t, w1_t, w2_t, w3_t, pw_len);
276
277     // add password
278     // truncate at 32 is wanted, not a bug!
279     // add o_buf
280
281     w0_t[0] |= w0[0];
282     w0_t[1] |= w0[1];
283     w0_t[2] |= w0[2];
284     w0_t[3] |= w0[3];
285     w1_t[0] |= w1[0];
286     w1_t[1] |= w1[1];
287     w1_t[2] |= w1[2];
288     w1_t[3] |= w1[3];
289     w2_t[0]  = o_buf[0];
290     w2_t[1]  = o_buf[1];
291     w2_t[2]  = o_buf[2];
292     w2_t[3]  = o_buf[3];
293     w3_t[0]  = o_buf[4];
294     w3_t[1]  = o_buf[5];
295     w3_t[2]  = o_buf[6];
296     w3_t[3]  = o_buf[7];
297
298     u32x digest[4];
299
300     digest[0] = MD5M_A;
301     digest[1] = MD5M_B;
302     digest[2] = MD5M_C;
303     digest[3] = MD5M_D;
304
305     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
306
307     w0_t[0] = P;
308     w0_t[1] = id_buf[0];
309     w0_t[2] = id_buf[1];
310     w0_t[3] = id_buf[2];
311     w1_t[0] = id_buf[3];
312     w1_t[1] = 0x80;
313     w1_t[2] = 0;
314     w1_t[3] = 0;
315     w2_t[0] = 0;
316     w2_t[1] = 0;
317     w2_t[2] = 0;
318     w2_t[3] = 0;
319     w3_t[0] = 0;
320     w3_t[1] = 0;
321     w3_t[2] = 84 * 8;
322     w3_t[3] = 0;
323
324     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
325
326     u32x a = digest[0];
327     u32x b = digest[1] & 0xff;
328
329     const u32x r0 = a;
330     const u32x r1 = b;
331     const u32x r2 = 0;
332     const u32x r3 = 0;
333
334     #include VECT_COMPARE_M
335   }
336 }
337
338 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10420_m08 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules__cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
339 {
340 }
341
342 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10420_m16 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
343 {
344 }
345
346 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10420_s04 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
347 {
348   /**
349    * modifier
350    */
351
352   const u32 lid = get_local_id (0);
353
354   /**
355    * base
356    */
357
358   const u32 gid = get_global_id (0);
359
360   if (gid >= gid_max) return;
361
362   u32x pw_buf0[4];
363
364   pw_buf0[0] = pws[gid].i[ 0];
365   pw_buf0[1] = pws[gid].i[ 1];
366   pw_buf0[2] = pws[gid].i[ 2];
367   pw_buf0[3] = pws[gid].i[ 3];
368
369   u32x pw_buf1[4];
370
371   pw_buf1[0] = pws[gid].i[ 4];
372   pw_buf1[1] = pws[gid].i[ 5];
373   pw_buf1[2] = pws[gid].i[ 6];
374   pw_buf1[3] = pws[gid].i[ 7];
375
376   const u32 pw_len = pws[gid].pw_len;
377
378   /**
379    * digest
380    */
381
382   const u32 search[4] =
383   {
384     digests_buf[digests_offset].digest_buf[DGST_R0],
385     digests_buf[digests_offset].digest_buf[DGST_R1],
386     digests_buf[digests_offset].digest_buf[DGST_R2],
387     digests_buf[digests_offset].digest_buf[DGST_R3]
388   };
389
390   /**
391    * U_buf
392    */
393
394   u32 o_buf[8];
395
396   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
397   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
398   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
399   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
400   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
401   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
402   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
403   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
404
405   u32 P = pdf_bufs[salt_pos].P;
406
407   u32 id_buf[4];
408
409   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
410   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
411   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
412   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
413
414   /**
415    * loop
416    */
417
418   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
419   {
420     u32x w0[4];
421
422     w0[0] = pw_buf0[0];
423     w0[1] = pw_buf0[1];
424     w0[2] = pw_buf0[2];
425     w0[3] = pw_buf0[3];
426
427     u32x w1[4];
428
429     w1[0] = pw_buf1[0];
430     w1[1] = pw_buf1[1];
431     w1[2] = pw_buf1[2];
432     w1[3] = pw_buf1[3];
433
434     u32x w2[4];
435
436     w2[0] = 0;
437     w2[1] = 0;
438     w2[2] = 0;
439     w2[3] = 0;
440
441     u32x w3[4];
442
443     w3[0] = 0;
444     w3[1] = 0;
445     w3[2] = 0;
446     w3[3] = 0;
447
448     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
449
450     u32x w0_t[4];
451     u32x w1_t[4];
452     u32x w2_t[4];
453     u32x w3_t[4];
454
455     // max length supported by pdf11 is 32
456
457     w0_t[0] = padding[0];
458     w0_t[1] = padding[1];
459     w0_t[2] = padding[2];
460     w0_t[3] = padding[3];
461     w1_t[0] = padding[4];
462     w1_t[1] = padding[5];
463     w1_t[2] = padding[6];
464     w1_t[3] = padding[7];
465     w2_t[0] = 0;
466     w2_t[1] = 0;
467     w2_t[2] = 0;
468     w2_t[3] = 0;
469     w3_t[0] = 0;
470     w3_t[1] = 0;
471     w3_t[2] = 0;
472     w3_t[3] = 0;
473
474     switch_buffer_by_offset (w0_t, w1_t, w2_t, w3_t, pw_len);
475
476     // add password
477     // truncate at 32 is wanted, not a bug!
478     // add o_buf
479
480     w0_t[0] |= w0[0];
481     w0_t[1] |= w0[1];
482     w0_t[2] |= w0[2];
483     w0_t[3] |= w0[3];
484     w1_t[0] |= w1[0];
485     w1_t[1] |= w1[1];
486     w1_t[2] |= w1[2];
487     w1_t[3] |= w1[3];
488     w2_t[0]  = o_buf[0];
489     w2_t[1]  = o_buf[1];
490     w2_t[2]  = o_buf[2];
491     w2_t[3]  = o_buf[3];
492     w3_t[0]  = o_buf[4];
493     w3_t[1]  = o_buf[5];
494     w3_t[2]  = o_buf[6];
495     w3_t[3]  = o_buf[7];
496
497     u32x digest[4];
498
499     digest[0] = MD5M_A;
500     digest[1] = MD5M_B;
501     digest[2] = MD5M_C;
502     digest[3] = MD5M_D;
503
504     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
505
506     w0_t[0] = P;
507     w0_t[1] = id_buf[0];
508     w0_t[2] = id_buf[1];
509     w0_t[3] = id_buf[2];
510     w1_t[0] = id_buf[3];
511     w1_t[1] = 0x80;
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] = 84 * 8;
521     w3_t[3] = 0;
522
523     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
524
525     u32x a = digest[0];
526     u32x b = digest[1] & 0xff;
527
528     const u32x r0 = a;
529     const u32x r1 = b;
530     const u32x r2 = 0;
531     const u32x r3 = 0;
532
533     #include VECT_COMPARE_S
534   }
535 }
536
537 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10420_s08 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
538 {
539 }
540
541 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10420_s16 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
542 {
543 }