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