Initial commit
[hashcat.git] / nv / m02400_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) m02400_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   const u32 pw_len = pws[gid].pw_len;
71
72   /**
73    * loop
74    */
75
76   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
77   {
78     u32x w0[4];
79
80     w0[0] = pw_buf0[0];
81     w0[1] = pw_buf0[1];
82     w0[2] = pw_buf0[2];
83     w0[3] = pw_buf0[3];
84
85     u32x w1[4];
86
87     w1[0] = 0;
88     w1[1] = 0;
89     w1[2] = 0;
90     w1[3] = 0;
91
92     u32x w2[4];
93
94     w2[0] = 0;
95     w2[1] = 0;
96     w2[2] = 0;
97     w2[3] = 0;
98
99     u32x w3[4];
100
101     w3[0] = 0;
102     w3[1] = 0;
103     w3[2] = 0;
104     w3[3] = 0;
105
106     const u32 out_len = apply_rules (c_rules[il_pos].cmds, w0, w1, pw_len);
107
108     truncate_block (w0, out_len);
109
110     w1[0] = 0x80;
111     w3[2] = 16 * 8;
112
113     u32x tmp2;
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_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
155     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
156     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
157     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
158     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
159     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
160     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
161     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
162     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
163     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
164     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
165     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
166     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
167     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
168     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
169     MD5_STEP (MD5_H2, 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 &= 0x00ffffff;
189     d &= 0x00ffffff;
190     c &= 0x00ffffff;
191     b &= 0x00ffffff;
192
193     const u32x r0 = a;
194     const u32x r1 = d;
195     const u32x r2 = c;
196     const u32x r3 = b;
197
198     #include VECT_COMPARE_M
199   }
200 }
201
202 extern "C" __global__ void __launch_bounds__ (256, 1) m02400_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)
203 {
204 }
205
206 extern "C" __global__ void __launch_bounds__ (256, 1) m02400_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)
207 {
208 }
209
210 extern "C" __global__ void __launch_bounds__ (256, 1) m02400_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)
211 {
212   /**
213    * modifier
214    */
215
216   const u32 lid = threadIdx.x;
217
218   /**
219    * base
220    */
221
222   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
223
224   if (gid >= gid_max) return;
225
226   u32x pw_buf0[4];
227
228   pw_buf0[0] = pws[gid].i[ 0];
229   pw_buf0[1] = pws[gid].i[ 1];
230   pw_buf0[2] = pws[gid].i[ 2];
231   pw_buf0[3] = pws[gid].i[ 3];
232
233   const u32 pw_len = pws[gid].pw_len;
234
235   /**
236    * digest
237    */
238
239   const u32 search[4] =
240   {
241     digests_buf[digests_offset].digest_buf[DGST_R0],
242     digests_buf[digests_offset].digest_buf[DGST_R1],
243     digests_buf[digests_offset].digest_buf[DGST_R2],
244     digests_buf[digests_offset].digest_buf[DGST_R3]
245   };
246
247   /**
248    * loop
249    */
250
251   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
252   {
253     u32x w0[4];
254
255     w0[0] = pw_buf0[0];
256     w0[1] = pw_buf0[1];
257     w0[2] = pw_buf0[2];
258     w0[3] = pw_buf0[3];
259
260     u32x w1[4];
261
262     w1[0] = 0;
263     w1[1] = 0;
264     w1[2] = 0;
265     w1[3] = 0;
266
267     u32x w2[4];
268
269     w2[0] = 0;
270     w2[1] = 0;
271     w2[2] = 0;
272     w2[3] = 0;
273
274     u32x w3[4];
275
276     w3[0] = 0;
277     w3[1] = 0;
278     w3[2] = 0;
279     w3[3] = 0;
280
281     const u32 out_len = apply_rules (c_rules[il_pos].cmds, w0, w1, pw_len);
282
283     truncate_block (w0, out_len);
284
285     w1[0] = 0x80;
286     w3[2] = 16 * 8;
287
288     u32x tmp2;
289
290     u32x a = MD5M_A;
291     u32x b = MD5M_B;
292     u32x c = MD5M_C;
293     u32x d = MD5M_D;
294
295     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
296     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
297     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
298     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
299     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
300     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
301     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
302     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
303     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
304     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
305     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
306     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
307     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
308     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
309     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
310     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
311
312     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
313     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
314     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
315     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
316     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
317     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
318     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
319     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
320     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
321     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
322     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
323     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
324     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
325     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
326     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
327     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
328
329     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
330     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
331     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
332     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
333     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
334     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
335     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
336     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
337     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
338     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
339     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
340     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
341     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
342     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
343     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
344     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
345
346     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
347     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
348     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
349     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
350     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
351     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
352     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
353     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
354     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
355     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
356     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
357     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
358     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
359
360     bool q_cond = ((a & 0x00ffffff) != search[0]);
361
362     if (q_cond) continue;
363
364     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
365     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
366     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
367
368     a &= 0x00ffffff;
369     d &= 0x00ffffff;
370     c &= 0x00ffffff;
371     b &= 0x00ffffff;
372
373     const u32x r0 = a;
374     const u32x r1 = d;
375     const u32x r2 = c;
376     const u32x r3 = b;
377
378     #include VECT_COMPARE_S
379   }
380 }
381
382 extern "C" __global__ void __launch_bounds__ (256, 1) m02400_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)
383 {
384 }
385
386 extern "C" __global__ void __launch_bounds__ (256, 1) m02400_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)
387 {
388 }