Merge pull request #241 from philsmd/master
[hashcat.git] / OpenCL / m02400_a0.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
7
8 #define NEW_SIMD_CODE
9
10 #include "include/constants.h"
11 #include "include/kernel_vendor.h"
12
13 #define DGST_R0 0
14 #define DGST_R1 3
15 #define DGST_R2 2
16 #define DGST_R3 1
17
18 #include "include/kernel_functions.c"
19 #include "OpenCL/types_ocl.c"
20 #include "OpenCL/common.c"
21 #include "include/rp_kernel.h"
22 #include "OpenCL/rp.c"
23 #include "OpenCL/simd.c"
24
25 __kernel void m02400_m04 (__global pw_t *pws, __global kernel_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global 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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
26 {
27   /**
28    * modifier
29    */
30
31   const u32 lid = get_local_id (0);
32
33   /**
34    * base
35    */
36
37   const u32 gid = get_global_id (0);
38
39   if (gid >= gid_max) return;
40
41   u32 pw_buf0[4];
42
43   pw_buf0[0] = pws[gid].i[ 0];
44   pw_buf0[1] = pws[gid].i[ 1];
45   pw_buf0[2] = pws[gid].i[ 2];
46   pw_buf0[3] = pws[gid].i[ 3];
47
48   u32 pw_buf1[4];
49
50   pw_buf1[0] = pws[gid].i[ 4];
51   pw_buf1[1] = pws[gid].i[ 5];
52   pw_buf1[2] = pws[gid].i[ 6];
53   pw_buf1[3] = pws[gid].i[ 7];
54
55   const u32 pw_len = pws[gid].pw_len;
56
57   /**
58    * loop
59    */
60
61   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
62   {
63     u32x w0[4] = { 0 };
64     u32x w1[4] = { 0 };
65     u32x w2[4] = { 0 };
66     u32x w3[4] = { 0 };
67
68     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
69
70     //not required?
71     //truncate_block_VV (w0, out_len);
72
73     w1[0] = 0x80;
74     w1[1] = 0;
75     w1[2] = 0;
76     w1[3] = 0;
77
78     w3[2] = 16 * 8;
79
80     u32x a = MD5M_A;
81     u32x b = MD5M_B;
82     u32x c = MD5M_C;
83     u32x d = MD5M_D;
84
85     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
86     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
87     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
88     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
89     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
90     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
91     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
92     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
93     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
94     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
95     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
96     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
97     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
98     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
99     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
100     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
101
102     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
103     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
104     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
105     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
106     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
107     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
108     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
109     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
110     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
111     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
112     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
113     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
114     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
115     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
116     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
117     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
118
119     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
120     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
121     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
122     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
123     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
124     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
125     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
126     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
127     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
128     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
129     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
130     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
131     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
132     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
133     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
134     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
135
136     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
137     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
138     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
139     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
140     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
141     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
142     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
143     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
144     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
145     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
146     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
147     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
148     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
149     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
150     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
151     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
152
153     a &= 0x00ffffff;
154     d &= 0x00ffffff;
155     c &= 0x00ffffff;
156     b &= 0x00ffffff;
157
158     COMPARE_M_SIMD (a, d, c, b);
159   }
160 }
161
162 __kernel void m02400_m08 (__global pw_t *pws, __global kernel_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global 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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
163 {
164 }
165
166 __kernel void m02400_m16 (__global pw_t *pws, __global kernel_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global 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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
167 {
168 }
169
170 __kernel void m02400_s04 (__global pw_t *pws, __global kernel_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global 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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
171 {
172   /**
173    * modifier
174    */
175
176   const u32 lid = get_local_id (0);
177
178   /**
179    * base
180    */
181
182   const u32 gid = get_global_id (0);
183
184   if (gid >= gid_max) return;
185
186   u32 pw_buf0[4];
187
188   pw_buf0[0] = pws[gid].i[ 0];
189   pw_buf0[1] = pws[gid].i[ 1];
190   pw_buf0[2] = pws[gid].i[ 2];
191   pw_buf0[3] = pws[gid].i[ 3];
192
193   u32 pw_buf1[4];
194
195   pw_buf1[0] = pws[gid].i[ 4];
196   pw_buf1[1] = pws[gid].i[ 5];
197   pw_buf1[2] = pws[gid].i[ 6];
198   pw_buf1[3] = pws[gid].i[ 7];
199
200   const u32 pw_len = pws[gid].pw_len;
201
202   /**
203    * digest
204    */
205
206   const u32 search[4] =
207   {
208     digests_buf[digests_offset].digest_buf[DGST_R0],
209     digests_buf[digests_offset].digest_buf[DGST_R1],
210     digests_buf[digests_offset].digest_buf[DGST_R2],
211     digests_buf[digests_offset].digest_buf[DGST_R3]
212   };
213
214   /**
215    * loop
216    */
217
218   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
219   {
220     u32x w0[4] = { 0 };
221     u32x w1[4] = { 0 };
222     u32x w2[4] = { 0 };
223     u32x w3[4] = { 0 };
224
225     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
226
227     //not required?
228     //truncate_block_VV (w0, out_len);
229
230     w1[0] = 0x80;
231     w1[1] = 0;
232     w1[2] = 0;
233     w1[3] = 0;
234
235     w3[2] = 16 * 8;
236
237     u32x a = MD5M_A;
238     u32x b = MD5M_B;
239     u32x c = MD5M_C;
240     u32x d = MD5M_D;
241
242     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
243     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
244     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
245     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
246     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
247     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
248     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
249     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
250     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
251     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
252     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
253     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
254     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
255     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
256     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
257     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
258
259     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
260     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
261     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
262     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
263     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
264     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
265     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
266     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
267     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
268     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
269     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
270     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
271     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
272     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
273     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
274     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
275
276     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
277     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
278     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
279     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
280     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
281     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
282     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
283     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
284     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
285     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
286     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
287     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
288     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
289     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
290     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
291     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
292
293     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
294     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
295     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
296     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
297     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
298     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
299     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
300     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
301     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
302     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
303     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
304     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
305     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
306
307     if (MATCHES_NONE_VS ((a & 0x00ffffff), search[0])) continue;
308
309     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
310     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
311     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
312
313     a &= 0x00ffffff;
314     d &= 0x00ffffff;
315     c &= 0x00ffffff;
316     b &= 0x00ffffff;
317
318     COMPARE_S_SIMD (a, d, c, b);
319   }
320 }
321
322 __kernel void m02400_s08 (__global pw_t *pws, __global kernel_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global 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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
323 {
324 }
325
326 __kernel void m02400_s16 (__global pw_t *pws, __global kernel_rule_t *  rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global 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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
327 {
328 }