Initial commit
[hashcat.git] / nv / m00000_a1.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_SIZE4
17 #endif
18
19 #define DGST_R0 0
20 #define DGST_R1 3
21 #define DGST_R2 2
22 #define DGST_R3 1
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) m00000_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 tmp2;
170
171     u32x a = MD5M_A;
172     u32x b = MD5M_B;
173     u32x c = MD5M_C;
174     u32x d = MD5M_D;
175
176     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
177     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
178     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
179     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
180     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
181     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
182     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
183     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
184     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
185     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
186     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
187     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
188     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
189     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
190     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
191     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
192
193     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
194     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
195     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
196     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
197     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
198     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
199     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
200     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
201     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
202     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
203     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
204     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
205     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
206     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
207     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
208     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
209
210     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
211     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
212     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
213     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
214     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
215     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
216     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
217     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
218     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
219     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
220     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
221     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
222     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
223     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
224     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
225     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
226
227     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
228     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
229     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
230     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
231     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
232     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
233     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
234     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
235     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
236     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
237     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
238     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
239     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
240     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
241     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
242     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
243
244
245     const u32x r0 = a;
246     const u32x r1 = d;
247     const u32x r2 = c;
248     const u32x r3 = b;
249
250     #include VECT_COMPARE_M
251   }
252 }
253
254 extern "C" __global__ void __launch_bounds__ (256, 1) m00000_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)
255 {
256 }
257
258 extern "C" __global__ void __launch_bounds__ (256, 1) m00000_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)
259 {
260 }
261
262 extern "C" __global__ void __launch_bounds__ (256, 1) m00000_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)
263 {
264   /**
265    * modifier
266    */
267
268   const u32 lid = threadIdx.x;
269
270   /**
271    * base
272    */
273
274   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
275
276   if (gid >= gid_max) return;
277
278   u32x wordl0[4];
279
280   wordl0[0] = pws[gid].i[ 0];
281   wordl0[1] = pws[gid].i[ 1];
282   wordl0[2] = pws[gid].i[ 2];
283   wordl0[3] = pws[gid].i[ 3];
284
285   u32x wordl1[4];
286
287   wordl1[0] = pws[gid].i[ 4];
288   wordl1[1] = pws[gid].i[ 5];
289   wordl1[2] = pws[gid].i[ 6];
290   wordl1[3] = pws[gid].i[ 7];
291
292   u32x wordl2[4];
293
294   wordl2[0] = 0;
295   wordl2[1] = 0;
296   wordl2[2] = 0;
297   wordl2[3] = 0;
298
299   u32x wordl3[4];
300
301   wordl3[0] = 0;
302   wordl3[1] = 0;
303   wordl3[2] = 0;
304   wordl3[3] = 0;
305
306   const u32 pw_l_len = pws[gid].pw_len;
307
308   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
309   {
310     append_0x80_2 (wordl0, wordl1, pw_l_len);
311
312     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, c_combs[0].pw_len);
313   }
314
315   /**
316    * digest
317    */
318
319   const u32 search[4] =
320   {
321     digests_buf[digests_offset].digest_buf[DGST_R0],
322     digests_buf[digests_offset].digest_buf[DGST_R1],
323     digests_buf[digests_offset].digest_buf[DGST_R2],
324     digests_buf[digests_offset].digest_buf[DGST_R3]
325   };
326
327   /**
328    * loop
329    */
330
331   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
332   {
333     const u32 pw_r_len = c_combs[il_pos].pw_len;
334
335     const u32 pw_len = pw_l_len + pw_r_len;
336
337     u32 wordr0[4];
338
339     wordr0[0] = c_combs[il_pos].i[0];
340     wordr0[1] = c_combs[il_pos].i[1];
341     wordr0[2] = c_combs[il_pos].i[2];
342     wordr0[3] = c_combs[il_pos].i[3];
343
344     u32 wordr1[4];
345
346     wordr1[0] = c_combs[il_pos].i[4];
347     wordr1[1] = c_combs[il_pos].i[5];
348     wordr1[2] = c_combs[il_pos].i[6];
349     wordr1[3] = c_combs[il_pos].i[7];
350
351     u32 wordr2[4];
352
353     wordr2[0] = 0;
354     wordr2[1] = 0;
355     wordr2[2] = 0;
356     wordr2[3] = 0;
357
358     u32 wordr3[4];
359
360     wordr3[0] = 0;
361     wordr3[1] = 0;
362     wordr3[2] = 0;
363     wordr3[3] = 0;
364
365     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
366     {
367       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
368     }
369
370     u32x w0[4];
371
372     w0[0] = wordl0[0] | wordr0[0];
373     w0[1] = wordl0[1] | wordr0[1];
374     w0[2] = wordl0[2] | wordr0[2];
375     w0[3] = wordl0[3] | wordr0[3];
376
377     u32x w1[4];
378
379     w1[0] = wordl1[0] | wordr1[0];
380     w1[1] = wordl1[1] | wordr1[1];
381     w1[2] = wordl1[2] | wordr1[2];
382     w1[3] = wordl1[3] | wordr1[3];
383
384     u32x w2[4];
385
386     w2[0] = wordl2[0] | wordr2[0];
387     w2[1] = wordl2[1] | wordr2[1];
388     w2[2] = wordl2[2] | wordr2[2];
389     w2[3] = wordl2[3] | wordr2[3];
390
391     u32x w3[4];
392
393     w3[0] = wordl3[0] | wordr3[0];
394     w3[1] = wordl3[1] | wordr3[1];
395     w3[2] = pw_len * 8;
396     w3[3] = 0;
397
398     u32x tmp2;
399
400     u32x a = MD5M_A;
401     u32x b = MD5M_B;
402     u32x c = MD5M_C;
403     u32x d = MD5M_D;
404
405     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
406     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
407     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
408     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
409     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
410     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
411     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
412     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
413     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
414     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
415     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
416     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
417     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
418     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
419     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
420     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
421
422     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
423     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
424     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
425     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
426     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
427     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
428     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
429     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
430     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
431     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
432     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
433     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
434     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
435     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
436     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
437     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
438
439     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
440     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
441     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
442     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
443     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
444     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
445     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
446     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
447     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
448     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
449     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
450     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
451     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
452     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
453     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
454     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
455
456     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
457     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
458     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
459     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
460     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
461     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
462     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
463     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
464     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
465     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
466     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
467     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
468     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
469
470     bool q_cond = (search[0] != a);
471
472     if (q_cond) continue;
473
474     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
475     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
476     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
477
478
479     const u32x r0 = a;
480     const u32x r1 = d;
481     const u32x r2 = c;
482     const u32x r3 = b;
483
484     #include VECT_COMPARE_S
485   }
486 }
487
488 extern "C" __global__ void __launch_bounds__ (256, 1) m00000_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)
489 {
490 }
491
492 extern "C" __global__ void __launch_bounds__ (256, 1) m00000_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)
493 {
494 }