Initial commit
[hashcat.git] / nv / m05100_a0.cu
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5H_
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 #ifdef  VECT_SIZE4
41 #define VECT_COMPARE_S "check_single_vect4_comp4.c"
42 #define VECT_COMPARE_M "check_multi_vect4_comp4.c"
43 #endif
44
45 __device__ __constant__ gpu_rule_t c_rules[1024];
46
47 extern "C" __global__ void __launch_bounds__ (256, 1) m05100_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 void *esalt_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)
48 {
49   /**
50    * modifier
51    */
52
53   const u32 lid = threadIdx.x;
54
55   /**
56    * base
57    */
58
59   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
60
61   if (gid >= gid_max) return;
62
63   u32x pw_buf0[4];
64
65   pw_buf0[0] = pws[gid].i[ 0];
66   pw_buf0[1] = pws[gid].i[ 1];
67   pw_buf0[2] = pws[gid].i[ 2];
68   pw_buf0[3] = pws[gid].i[ 3];
69
70   u32x pw_buf1[4];
71
72   pw_buf1[0] = pws[gid].i[ 4];
73   pw_buf1[1] = pws[gid].i[ 5];
74   pw_buf1[2] = pws[gid].i[ 6];
75   pw_buf1[3] = pws[gid].i[ 7];
76
77   const u32 pw_len = pws[gid].pw_len;
78
79   /**
80    * loop
81    */
82
83   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
84   {
85     u32x w0[4];
86
87     w0[0] = pw_buf0[0];
88     w0[1] = pw_buf0[1];
89     w0[2] = pw_buf0[2];
90     w0[3] = pw_buf0[3];
91
92     u32x w1[4];
93
94     w1[0] = pw_buf1[0];
95     w1[1] = pw_buf1[1];
96     w1[2] = pw_buf1[2];
97     w1[3] = pw_buf1[3];
98
99     u32x w2[4];
100
101     w2[0] = 0;
102     w2[1] = 0;
103     w2[2] = 0;
104     w2[3] = 0;
105
106     u32x w3[4];
107
108     w3[0] = 0;
109     w3[1] = 0;
110     w3[2] = 0;
111     w3[3] = 0;
112
113     const u32 out_len = apply_rules (c_rules[il_pos].cmds, w0, w1, pw_len);
114
115     append_0x80_2 (w0, w1, out_len);
116
117     w3[2] = out_len * 8;
118
119     u32x a = MD5M_A;
120     u32x b = MD5M_B;
121     u32x c = MD5M_C;
122     u32x d = MD5M_D;
123
124     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
125     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
126     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
127     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
128     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
129     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
130     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
131     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
132     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
133     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
134     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
135     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
136     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
137     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
138     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
139     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
140
141     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
142     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
143     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
144     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
145     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
146     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
147     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
148     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
149     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
150     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
151     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
152     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
153     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
154     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
155     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
156     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
157
158     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
159     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
160     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
161     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
162     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
163     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
164     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
165     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
166     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
167     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
168     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
169     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
170     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
171     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
172     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
173     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
174
175     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
176     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
177     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
178     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
179     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
180     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
181     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
182     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
183     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
184     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
185     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
186     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
187     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
188     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
189     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
190     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
191
192     a += MD5M_A;
193     b += MD5M_B;
194     c += MD5M_C;
195     d += MD5M_D;
196
197     {
198       const u32x r0 = a;
199       const u32x r1 = b;
200       const u32x r2 = 0;
201       const u32x r3 = 0;
202
203       #include VECT_COMPARE_M
204     }
205
206     {
207       const u32x r0 = b;
208       const u32x r1 = c;
209       const u32x r2 = 0;
210       const u32x r3 = 0;
211
212       #include VECT_COMPARE_M
213     }
214
215     {
216       const u32x r0 = c;
217       const u32x r1 = d;
218       const u32x r2 = 0;
219       const u32x r3 = 0;
220
221       #include VECT_COMPARE_M
222     }
223   }
224 }
225
226 extern "C" __global__ void __launch_bounds__ (256, 1) m05100_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 void *esalt_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)
227 {
228 }
229
230 extern "C" __global__ void __launch_bounds__ (256, 1) m05100_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 void *esalt_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)
231 {
232 }
233
234 extern "C" __global__ void __launch_bounds__ (256, 1) m05100_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 void *esalt_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)
235 {
236   /**
237    * modifier
238    */
239
240   const u32 lid = threadIdx.x;
241
242   /**
243    * base
244    */
245
246   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
247
248   if (gid >= gid_max) return;
249
250   u32x pw_buf0[4];
251
252   pw_buf0[0] = pws[gid].i[ 0];
253   pw_buf0[1] = pws[gid].i[ 1];
254   pw_buf0[2] = pws[gid].i[ 2];
255   pw_buf0[3] = pws[gid].i[ 3];
256
257   u32x pw_buf1[4];
258
259   pw_buf1[0] = pws[gid].i[ 4];
260   pw_buf1[1] = pws[gid].i[ 5];
261   pw_buf1[2] = pws[gid].i[ 6];
262   pw_buf1[3] = pws[gid].i[ 7];
263
264   const u32 pw_len = pws[gid].pw_len;
265
266   /**
267    * digest
268    */
269
270   const u32 search[4] =
271   {
272     digests_buf[digests_offset].digest_buf[DGST_R0],
273     digests_buf[digests_offset].digest_buf[DGST_R1],
274     digests_buf[digests_offset].digest_buf[DGST_R2],
275     digests_buf[digests_offset].digest_buf[DGST_R3]
276   };
277
278   /**
279    * loop
280    */
281
282   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
283   {
284     u32x w0[4];
285
286     w0[0] = pw_buf0[0];
287     w0[1] = pw_buf0[1];
288     w0[2] = pw_buf0[2];
289     w0[3] = pw_buf0[3];
290
291     u32x w1[4];
292
293     w1[0] = pw_buf1[0];
294     w1[1] = pw_buf1[1];
295     w1[2] = pw_buf1[2];
296     w1[3] = pw_buf1[3];
297
298     u32x w2[4];
299
300     w2[0] = 0;
301     w2[1] = 0;
302     w2[2] = 0;
303     w2[3] = 0;
304
305     u32x w3[4];
306
307     w3[0] = 0;
308     w3[1] = 0;
309     w3[2] = 0;
310     w3[3] = 0;
311
312     const u32 out_len = apply_rules (c_rules[il_pos].cmds, w0, w1, pw_len);
313
314     append_0x80_2 (w0, w1, out_len);
315
316     w3[2] = out_len * 8;
317
318     u32x a = MD5M_A;
319     u32x b = MD5M_B;
320     u32x c = MD5M_C;
321     u32x d = MD5M_D;
322
323     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
324     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
325     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
326     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
327     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
328     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
329     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
330     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
331     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
332     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
333     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
334     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
335     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
336     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
337     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
338     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
339
340     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
341     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
342     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
343     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
344     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
345     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
346     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
347     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
348     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
349     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
350     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
351     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
352     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
353     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
354     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
355     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
356
357     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
358     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
359     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
360     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
361     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
362     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
363     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
364     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
365     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
366     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
367     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
368     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
369     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
370     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
371     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
372     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
373
374     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
375     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
376     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
377     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
378     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
379     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
380     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
381     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
382     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
383     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
384     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
385     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
386     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
387     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
388     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
389     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
390
391     a += MD5M_A;
392     b += MD5M_B;
393     c += MD5M_C;
394     d += MD5M_D;
395
396     {
397       const u32x r0 = a;
398       const u32x r1 = b;
399       const u32x r2 = 0;
400       const u32x r3 = 0;
401
402       #include VECT_COMPARE_M
403     }
404
405     {
406       const u32x r0 = b;
407       const u32x r1 = c;
408       const u32x r2 = 0;
409       const u32x r3 = 0;
410
411       #include VECT_COMPARE_M
412     }
413
414     {
415       const u32x r0 = c;
416       const u32x r1 = d;
417       const u32x r2 = 0;
418       const u32x r3 = 0;
419
420       #include VECT_COMPARE_M
421     }
422   }
423 }
424
425 extern "C" __global__ void __launch_bounds__ (256, 1) m05100_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 void *esalt_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)
426 {
427 }
428
429 extern "C" __global__ void __launch_bounds__ (256, 1) m05100_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 void *esalt_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)
430 {
431 }