Initial commit
[hashcat.git] / nv / m09900_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 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 #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) m09900_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     apply_rules (c_rules[il_pos].cmds, w0, w1, pw_len);
114
115     u32x a = MD5M_A;
116     u32x b = MD5M_B;
117     u32x c = MD5M_C;
118     u32x d = MD5M_D;
119
120     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
121     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
122     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
123     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
124     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
125     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
126     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
127     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
128     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
129     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
130     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
131     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
132     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
133     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
134     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
135     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
136
137     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
138     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
139     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
140     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
141     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
142     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
143     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
144     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
145     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
146     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
147     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
148     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
149     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
150     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
151     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
152     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
153
154     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
155     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
156     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
157     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
158     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
159     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
160     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
161     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
162     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
163     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
164     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
165     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
166     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
167     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
168     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
169     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
170
171     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
172     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
173     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
174     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
175     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
176     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
177     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
178     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
179     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
180     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
181     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
182     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
183     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
184     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
185     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
186     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
187
188     a += MD5M_A;
189     b += MD5M_B;
190     c += MD5M_C;
191     d += MD5M_D;
192
193     u32x r_a = a;
194     u32x r_b = b;
195     u32x r_c = c;
196     u32x r_d = d;
197
198     u32x t0[4];
199     u32x t1[4];
200     u32x t2[4];
201     u32x t3[4];
202
203     t0[0] = 0;
204     t0[1] = 0;
205     t0[2] = 0;
206     t0[3] = 0;
207     t1[0] = 0;
208     t1[1] = 0;
209     t1[2] = 0;
210     t1[3] = 0;
211     t2[0] = 0;
212     t2[1] = 0x80;
213     t2[2] = 0;
214     t2[3] = 0;
215     t3[0] = 0;
216     t3[1] = 0;
217     t3[2] = 100 * 8;
218     t3[3] = 0;
219
220     MD5_STEP (MD5_Fo, a, b, c, d, t0[0], MD5C00, MD5S00);
221     MD5_STEP (MD5_Fo, d, a, b, c, t0[1], MD5C01, MD5S01);
222     MD5_STEP (MD5_Fo, c, d, a, b, t0[2], MD5C02, MD5S02);
223     MD5_STEP (MD5_Fo, b, c, d, a, t0[3], MD5C03, MD5S03);
224     MD5_STEP (MD5_Fo, a, b, c, d, t1[0], MD5C04, MD5S00);
225     MD5_STEP (MD5_Fo, d, a, b, c, t1[1], MD5C05, MD5S01);
226     MD5_STEP (MD5_Fo, c, d, a, b, t1[2], MD5C06, MD5S02);
227     MD5_STEP (MD5_Fo, b, c, d, a, t1[3], MD5C07, MD5S03);
228     MD5_STEP (MD5_Fo, a, b, c, d, t2[0], MD5C08, MD5S00);
229     MD5_STEP (MD5_Fo, d, a, b, c, t2[1], MD5C09, MD5S01);
230     MD5_STEP (MD5_Fo, c, d, a, b, t2[2], MD5C0a, MD5S02);
231     MD5_STEP (MD5_Fo, b, c, d, a, t2[3], MD5C0b, MD5S03);
232     MD5_STEP (MD5_Fo, a, b, c, d, t3[0], MD5C0c, MD5S00);
233     MD5_STEP (MD5_Fo, d, a, b, c, t3[1], MD5C0d, MD5S01);
234     MD5_STEP (MD5_Fo, c, d, a, b, t3[2], MD5C0e, MD5S02);
235     MD5_STEP (MD5_Fo, b, c, d, a, t3[3], MD5C0f, MD5S03);
236
237     MD5_STEP (MD5_Go, a, b, c, d, t0[1], MD5C10, MD5S10);
238     MD5_STEP (MD5_Go, d, a, b, c, t1[2], MD5C11, MD5S11);
239     MD5_STEP (MD5_Go, c, d, a, b, t2[3], MD5C12, MD5S12);
240     MD5_STEP (MD5_Go, b, c, d, a, t0[0], MD5C13, MD5S13);
241     MD5_STEP (MD5_Go, a, b, c, d, t1[1], MD5C14, MD5S10);
242     MD5_STEP (MD5_Go, d, a, b, c, t2[2], MD5C15, MD5S11);
243     MD5_STEP (MD5_Go, c, d, a, b, t3[3], MD5C16, MD5S12);
244     MD5_STEP (MD5_Go, b, c, d, a, t1[0], MD5C17, MD5S13);
245     MD5_STEP (MD5_Go, a, b, c, d, t2[1], MD5C18, MD5S10);
246     MD5_STEP (MD5_Go, d, a, b, c, t3[2], MD5C19, MD5S11);
247     MD5_STEP (MD5_Go, c, d, a, b, t0[3], MD5C1a, MD5S12);
248     MD5_STEP (MD5_Go, b, c, d, a, t2[0], MD5C1b, MD5S13);
249     MD5_STEP (MD5_Go, a, b, c, d, t3[1], MD5C1c, MD5S10);
250     MD5_STEP (MD5_Go, d, a, b, c, t0[2], MD5C1d, MD5S11);
251     MD5_STEP (MD5_Go, c, d, a, b, t1[3], MD5C1e, MD5S12);
252     MD5_STEP (MD5_Go, b, c, d, a, t3[0], MD5C1f, MD5S13);
253
254     MD5_STEP (MD5_H , a, b, c, d, t1[1], MD5C20, MD5S20);
255     MD5_STEP (MD5_H , d, a, b, c, t2[0], MD5C21, MD5S21);
256     MD5_STEP (MD5_H , c, d, a, b, t2[3], MD5C22, MD5S22);
257     MD5_STEP (MD5_H , b, c, d, a, t3[2], MD5C23, MD5S23);
258     MD5_STEP (MD5_H , a, b, c, d, t0[1], MD5C24, MD5S20);
259     MD5_STEP (MD5_H , d, a, b, c, t1[0], MD5C25, MD5S21);
260     MD5_STEP (MD5_H , c, d, a, b, t1[3], MD5C26, MD5S22);
261     MD5_STEP (MD5_H , b, c, d, a, t2[2], MD5C27, MD5S23);
262     MD5_STEP (MD5_H , a, b, c, d, t3[1], MD5C28, MD5S20);
263     MD5_STEP (MD5_H , d, a, b, c, t0[0], MD5C29, MD5S21);
264     MD5_STEP (MD5_H , c, d, a, b, t0[3], MD5C2a, MD5S22);
265     MD5_STEP (MD5_H , b, c, d, a, t1[2], MD5C2b, MD5S23);
266     MD5_STEP (MD5_H , a, b, c, d, t2[1], MD5C2c, MD5S20);
267     MD5_STEP (MD5_H , d, a, b, c, t3[0], MD5C2d, MD5S21);
268     MD5_STEP (MD5_H , c, d, a, b, t3[3], MD5C2e, MD5S22);
269     MD5_STEP (MD5_H , b, c, d, a, t0[2], MD5C2f, MD5S23);
270
271     MD5_STEP (MD5_I , a, b, c, d, t0[0], MD5C30, MD5S30);
272     MD5_STEP (MD5_I , d, a, b, c, t1[3], MD5C31, MD5S31);
273     MD5_STEP (MD5_I , c, d, a, b, t3[2], MD5C32, MD5S32);
274     MD5_STEP (MD5_I , b, c, d, a, t1[1], MD5C33, MD5S33);
275     MD5_STEP (MD5_I , a, b, c, d, t3[0], MD5C34, MD5S30);
276     MD5_STEP (MD5_I , d, a, b, c, t0[3], MD5C35, MD5S31);
277     MD5_STEP (MD5_I , c, d, a, b, t2[2], MD5C36, MD5S32);
278     MD5_STEP (MD5_I , b, c, d, a, t0[1], MD5C37, MD5S33);
279     MD5_STEP (MD5_I , a, b, c, d, t2[0], MD5C38, MD5S30);
280     MD5_STEP (MD5_I , d, a, b, c, t3[3], MD5C39, MD5S31);
281     MD5_STEP (MD5_I , c, d, a, b, t1[2], MD5C3a, MD5S32);
282     MD5_STEP (MD5_I , b, c, d, a, t3[1], MD5C3b, MD5S33);
283     MD5_STEP (MD5_I , a, b, c, d, t1[0], MD5C3c, MD5S30);
284     MD5_STEP (MD5_I , d, a, b, c, t2[3], MD5C3d, MD5S31);
285     MD5_STEP (MD5_I , c, d, a, b, t0[2], MD5C3e, MD5S32);
286     MD5_STEP (MD5_I , b, c, d, a, t2[1], MD5C3f, MD5S33);
287
288     a += r_a;
289     b += r_b;
290     c += r_c;
291     d += r_d;
292
293     const u32x r0 = a;
294     const u32x r1 = d;
295     const u32x r2 = c;
296     const u32x r3 = b;
297
298     #include VECT_COMPARE_M
299   }
300 }
301
302 extern "C" __global__ void __launch_bounds__ (256, 1) m09900_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)
303 {
304 }
305
306 extern "C" __global__ void __launch_bounds__ (256, 1) m09900_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)
307 {
308 }
309
310 extern "C" __global__ void __launch_bounds__ (256, 1) m09900_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)
311 {
312   /**
313    * modifier
314    */
315
316   const u32 lid = threadIdx.x;
317
318   /**
319    * base
320    */
321
322   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
323
324   if (gid >= gid_max) return;
325
326   u32x pw_buf0[4];
327
328   pw_buf0[0] = pws[gid].i[ 0];
329   pw_buf0[1] = pws[gid].i[ 1];
330   pw_buf0[2] = pws[gid].i[ 2];
331   pw_buf0[3] = pws[gid].i[ 3];
332
333   u32x pw_buf1[4];
334
335   pw_buf1[0] = pws[gid].i[ 4];
336   pw_buf1[1] = pws[gid].i[ 5];
337   pw_buf1[2] = pws[gid].i[ 6];
338   pw_buf1[3] = pws[gid].i[ 7];
339
340   const u32 pw_len = pws[gid].pw_len;
341
342   /**
343    * digest
344    */
345
346   const u32 search[4] =
347   {
348     digests_buf[digests_offset].digest_buf[DGST_R0],
349     digests_buf[digests_offset].digest_buf[DGST_R1],
350     digests_buf[digests_offset].digest_buf[DGST_R2],
351     digests_buf[digests_offset].digest_buf[DGST_R3]
352   };
353
354   /**
355    * loop
356    */
357
358   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
359   {
360     u32x w0[4];
361
362     w0[0] = pw_buf0[0];
363     w0[1] = pw_buf0[1];
364     w0[2] = pw_buf0[2];
365     w0[3] = pw_buf0[3];
366
367     u32x w1[4];
368
369     w1[0] = pw_buf1[0];
370     w1[1] = pw_buf1[1];
371     w1[2] = pw_buf1[2];
372     w1[3] = pw_buf1[3];
373
374     u32x w2[4];
375
376     w2[0] = 0;
377     w2[1] = 0;
378     w2[2] = 0;
379     w2[3] = 0;
380
381     u32x w3[4];
382
383     w3[0] = 0;
384     w3[1] = 0;
385     w3[2] = 0;
386     w3[3] = 0;
387
388     apply_rules (c_rules[il_pos].cmds, w0, w1, pw_len);
389
390     u32x a = MD5M_A;
391     u32x b = MD5M_B;
392     u32x c = MD5M_C;
393     u32x d = MD5M_D;
394
395     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
396     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
397     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
398     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
399     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
400     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
401     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
402     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
403     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
404     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
405     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
406     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
407     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
408     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
409     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
410     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
411
412     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
413     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
414     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
415     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
416     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
417     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
418     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
419     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
420     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
421     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
422     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
423     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
424     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
425     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
426     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
427     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
428
429     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
430     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
431     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
432     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
433     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
434     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
435     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
436     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
437     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
438     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
439     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
440     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
441     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
442     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
443     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
444     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
445
446     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
447     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
448     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
449     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
450     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
451     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
452     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
453     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
454     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
455     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
456     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
457     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
458     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
459     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
460     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
461     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
462
463     a += MD5M_A;
464     b += MD5M_B;
465     c += MD5M_C;
466     d += MD5M_D;
467
468     u32x r_a = a;
469     u32x r_b = b;
470     u32x r_c = c;
471     u32x r_d = d;
472
473     u32x t0[4];
474     u32x t1[4];
475     u32x t2[4];
476     u32x t3[4];
477
478     t0[0] = 0;
479     t0[1] = 0;
480     t0[2] = 0;
481     t0[3] = 0;
482     t1[0] = 0;
483     t1[1] = 0;
484     t1[2] = 0;
485     t1[3] = 0;
486     t2[0] = 0;
487     t2[1] = 0x80;
488     t2[2] = 0;
489     t2[3] = 0;
490     t3[0] = 0;
491     t3[1] = 0;
492     t3[2] = 100 * 8;
493     t3[3] = 0;
494
495     MD5_STEP (MD5_Fo, a, b, c, d, t0[0], MD5C00, MD5S00);
496     MD5_STEP (MD5_Fo, d, a, b, c, t0[1], MD5C01, MD5S01);
497     MD5_STEP (MD5_Fo, c, d, a, b, t0[2], MD5C02, MD5S02);
498     MD5_STEP (MD5_Fo, b, c, d, a, t0[3], MD5C03, MD5S03);
499     MD5_STEP (MD5_Fo, a, b, c, d, t1[0], MD5C04, MD5S00);
500     MD5_STEP (MD5_Fo, d, a, b, c, t1[1], MD5C05, MD5S01);
501     MD5_STEP (MD5_Fo, c, d, a, b, t1[2], MD5C06, MD5S02);
502     MD5_STEP (MD5_Fo, b, c, d, a, t1[3], MD5C07, MD5S03);
503     MD5_STEP (MD5_Fo, a, b, c, d, t2[0], MD5C08, MD5S00);
504     MD5_STEP (MD5_Fo, d, a, b, c, t2[1], MD5C09, MD5S01);
505     MD5_STEP (MD5_Fo, c, d, a, b, t2[2], MD5C0a, MD5S02);
506     MD5_STEP (MD5_Fo, b, c, d, a, t2[3], MD5C0b, MD5S03);
507     MD5_STEP (MD5_Fo, a, b, c, d, t3[0], MD5C0c, MD5S00);
508     MD5_STEP (MD5_Fo, d, a, b, c, t3[1], MD5C0d, MD5S01);
509     MD5_STEP (MD5_Fo, c, d, a, b, t3[2], MD5C0e, MD5S02);
510     MD5_STEP (MD5_Fo, b, c, d, a, t3[3], MD5C0f, MD5S03);
511
512     MD5_STEP (MD5_Go, a, b, c, d, t0[1], MD5C10, MD5S10);
513     MD5_STEP (MD5_Go, d, a, b, c, t1[2], MD5C11, MD5S11);
514     MD5_STEP (MD5_Go, c, d, a, b, t2[3], MD5C12, MD5S12);
515     MD5_STEP (MD5_Go, b, c, d, a, t0[0], MD5C13, MD5S13);
516     MD5_STEP (MD5_Go, a, b, c, d, t1[1], MD5C14, MD5S10);
517     MD5_STEP (MD5_Go, d, a, b, c, t2[2], MD5C15, MD5S11);
518     MD5_STEP (MD5_Go, c, d, a, b, t3[3], MD5C16, MD5S12);
519     MD5_STEP (MD5_Go, b, c, d, a, t1[0], MD5C17, MD5S13);
520     MD5_STEP (MD5_Go, a, b, c, d, t2[1], MD5C18, MD5S10);
521     MD5_STEP (MD5_Go, d, a, b, c, t3[2], MD5C19, MD5S11);
522     MD5_STEP (MD5_Go, c, d, a, b, t0[3], MD5C1a, MD5S12);
523     MD5_STEP (MD5_Go, b, c, d, a, t2[0], MD5C1b, MD5S13);
524     MD5_STEP (MD5_Go, a, b, c, d, t3[1], MD5C1c, MD5S10);
525     MD5_STEP (MD5_Go, d, a, b, c, t0[2], MD5C1d, MD5S11);
526     MD5_STEP (MD5_Go, c, d, a, b, t1[3], MD5C1e, MD5S12);
527     MD5_STEP (MD5_Go, b, c, d, a, t3[0], MD5C1f, MD5S13);
528
529     MD5_STEP (MD5_H , a, b, c, d, t1[1], MD5C20, MD5S20);
530     MD5_STEP (MD5_H , d, a, b, c, t2[0], MD5C21, MD5S21);
531     MD5_STEP (MD5_H , c, d, a, b, t2[3], MD5C22, MD5S22);
532     MD5_STEP (MD5_H , b, c, d, a, t3[2], MD5C23, MD5S23);
533     MD5_STEP (MD5_H , a, b, c, d, t0[1], MD5C24, MD5S20);
534     MD5_STEP (MD5_H , d, a, b, c, t1[0], MD5C25, MD5S21);
535     MD5_STEP (MD5_H , c, d, a, b, t1[3], MD5C26, MD5S22);
536     MD5_STEP (MD5_H , b, c, d, a, t2[2], MD5C27, MD5S23);
537     MD5_STEP (MD5_H , a, b, c, d, t3[1], MD5C28, MD5S20);
538     MD5_STEP (MD5_H , d, a, b, c, t0[0], MD5C29, MD5S21);
539     MD5_STEP (MD5_H , c, d, a, b, t0[3], MD5C2a, MD5S22);
540     MD5_STEP (MD5_H , b, c, d, a, t1[2], MD5C2b, MD5S23);
541     MD5_STEP (MD5_H , a, b, c, d, t2[1], MD5C2c, MD5S20);
542     MD5_STEP (MD5_H , d, a, b, c, t3[0], MD5C2d, MD5S21);
543     MD5_STEP (MD5_H , c, d, a, b, t3[3], MD5C2e, MD5S22);
544     MD5_STEP (MD5_H , b, c, d, a, t0[2], MD5C2f, MD5S23);
545
546     MD5_STEP (MD5_I , a, b, c, d, t0[0], MD5C30, MD5S30);
547     MD5_STEP (MD5_I , d, a, b, c, t1[3], MD5C31, MD5S31);
548     MD5_STEP (MD5_I , c, d, a, b, t3[2], MD5C32, MD5S32);
549     MD5_STEP (MD5_I , b, c, d, a, t1[1], MD5C33, MD5S33);
550     MD5_STEP (MD5_I , a, b, c, d, t3[0], MD5C34, MD5S30);
551     MD5_STEP (MD5_I , d, a, b, c, t0[3], MD5C35, MD5S31);
552     MD5_STEP (MD5_I , c, d, a, b, t2[2], MD5C36, MD5S32);
553     MD5_STEP (MD5_I , b, c, d, a, t0[1], MD5C37, MD5S33);
554     MD5_STEP (MD5_I , a, b, c, d, t2[0], MD5C38, MD5S30);
555     MD5_STEP (MD5_I , d, a, b, c, t3[3], MD5C39, MD5S31);
556     MD5_STEP (MD5_I , c, d, a, b, t1[2], MD5C3a, MD5S32);
557     MD5_STEP (MD5_I , b, c, d, a, t3[1], MD5C3b, MD5S33);
558     MD5_STEP (MD5_I , a, b, c, d, t1[0], MD5C3c, MD5S30);
559
560     if ((a + r_a) != search[0]) continue;
561
562     MD5_STEP (MD5_I , d, a, b, c, t2[3], MD5C3d, MD5S31);
563     MD5_STEP (MD5_I , c, d, a, b, t0[2], MD5C3e, MD5S32);
564     MD5_STEP (MD5_I , b, c, d, a, t2[1], MD5C3f, MD5S33);
565
566     a += r_a;
567     b += r_b;
568     c += r_c;
569     d += r_d;
570
571     const u32x r0 = a;
572     const u32x r1 = d;
573     const u32x r2 = c;
574     const u32x r3 = b;
575
576     #include VECT_COMPARE_S
577   }
578 }
579
580 extern "C" __global__ void __launch_bounds__ (256, 1) m09900_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)
581 {
582 }
583
584 extern "C" __global__ void __launch_bounds__ (256, 1) m09900_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)
585 {
586 }