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