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