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