808914e37622c959e86e735cdcf9a5f7be808ce1
[hashcat.git] / OpenCL / m11000_a1.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 "inc_hash_constants.h"
11 #include "inc_vendor.cl"
12
13 #define DGST_R0 0
14 #define DGST_R1 3
15 #define DGST_R2 2
16 #define DGST_R3 1
17
18 #include "inc_hash_functions.cl"
19 #include "inc_types.cl"
20 #include "inc_common.cl"
21 #include "inc_simd.cl"
22
23 __kernel void m11000_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)
24 {
25   /**
26    * modifier
27    */
28
29   const u32 lid = get_local_id (0);
30
31   /**
32    * base
33    */
34
35   const u32 gid = get_global_id (0);
36
37   if (gid >= gid_max) return;
38
39   u32 pw_buf0[4];
40   u32 pw_buf1[4];
41
42   pw_buf0[0] = pws[gid].i[0];
43   pw_buf0[1] = pws[gid].i[1];
44   pw_buf0[2] = pws[gid].i[2];
45   pw_buf0[3] = pws[gid].i[3];
46   pw_buf1[0] = pws[gid].i[4];
47   pw_buf1[1] = pws[gid].i[5];
48   pw_buf1[2] = pws[gid].i[6];
49   pw_buf1[3] = pws[gid].i[7];
50
51   const u32 pw_l_len = pws[gid].pw_len;
52
53   /**
54    * salt
55    */
56
57   u32 salt_buf0[4];
58   u32 salt_buf1[4];
59   u32 salt_buf2[4];
60   u32 salt_buf3[4];
61
62   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
63   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
64   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
65   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
66   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
67   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
68   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
69   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
70   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
71   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
72   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
73   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
74   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
75   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
76   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
77   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
78
79   const u32 salt_len = salt_bufs[salt_pos].salt_len;
80
81   /**
82    * loop
83    */
84
85   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
86   {
87     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
88
89     const u32x pw_len = pw_l_len + pw_r_len;
90
91     /**
92      * concat password candidate
93      */
94
95     u32x wordl0[4] = { 0 };
96     u32x wordl1[4] = { 0 };
97     u32x wordl2[4] = { 0 };
98     u32x wordl3[4] = { 0 };
99
100     wordl0[0] = pw_buf0[0];
101     wordl0[1] = pw_buf0[1];
102     wordl0[2] = pw_buf0[2];
103     wordl0[3] = pw_buf0[3];
104     wordl1[0] = pw_buf1[0];
105     wordl1[1] = pw_buf1[1];
106     wordl1[2] = pw_buf1[2];
107     wordl1[3] = pw_buf1[3];
108
109     u32x wordr0[4] = { 0 };
110     u32x wordr1[4] = { 0 };
111     u32x wordr2[4] = { 0 };
112     u32x wordr3[4] = { 0 };
113
114     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
115     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
116     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
117     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
118     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
119     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
120     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
121     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
122
123     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
124     {
125       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
126     }
127     else
128     {
129       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
130     }
131
132     u32x w0[4];
133     u32x w1[4];
134     u32x w2[4];
135     u32x w3[4];
136
137     w0[0] = wordl0[0] | wordr0[0];
138     w0[1] = wordl0[1] | wordr0[1];
139     w0[2] = wordl0[2] | wordr0[2];
140     w0[3] = wordl0[3] | wordr0[3];
141     w1[0] = wordl1[0] | wordr1[0];
142     w1[1] = wordl1[1] | wordr1[1];
143     w1[2] = wordl1[2] | wordr1[2];
144     w1[3] = wordl1[3] | wordr1[3];
145     w2[0] = wordl2[0] | wordr2[0];
146     w2[1] = wordl2[1] | wordr2[1];
147     w2[2] = wordl2[2] | wordr2[2];
148     w2[3] = wordl2[3] | wordr2[3];
149     w3[0] = wordl3[0] | wordr3[0];
150     w3[1] = wordl3[1] | wordr3[1];
151     w3[2] = wordl3[2] | wordr3[2];
152     w3[3] = wordl3[3] | wordr3[3];
153
154     const u32x pw_salt_len = salt_len + pw_len;
155
156     /**
157      * prepend salt
158      */
159
160     // first step fixed 56 bytes of salt
161     // after 56 byte salt, we have beginning of the password
162
163     u32x w0_t[4];
164     u32x w1_t[4];
165     u32x w2_t[4];
166     u32x w3_t[4];
167
168     w0_t[0] = salt_buf0[0];
169     w0_t[1] = salt_buf0[1];
170     w0_t[2] = salt_buf0[2];
171     w0_t[3] = salt_buf0[3];
172     w1_t[0] = salt_buf1[0];
173     w1_t[1] = salt_buf1[1];
174     w1_t[2] = salt_buf1[2];
175     w1_t[3] = salt_buf1[3];
176     w2_t[0] = salt_buf2[0];
177     w2_t[1] = salt_buf2[1];
178     w2_t[2] = salt_buf2[2];
179     w2_t[3] = salt_buf2[3];
180     w3_t[0] = salt_buf3[0];
181     w3_t[1] = salt_buf3[1];
182     w3_t[2] = w0[0];
183     w3_t[3] = w0[1];
184
185     /**
186      * md5
187      */
188
189     u32x a = MD5M_A;
190     u32x b = MD5M_B;
191     u32x c = MD5M_C;
192     u32x d = MD5M_D;
193
194     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
195     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
196     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
197     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
198     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
199     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
200     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
201     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
202     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
203     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
204     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
205     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
206     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
207     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
208     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
209     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
210
211     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
212     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
213     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
214     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
215     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
216     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
217     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
218     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
219     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
220     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
221     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
222     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
223     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
224     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
225     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
226     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
227
228     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
229     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
230     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
231     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
232     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
233     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
234     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
235     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
236     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
237     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
238     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
239     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
240     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
241     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
242     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
243     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
244
245     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
246     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
247     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
248     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
249     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
250     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
251     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
252     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
253     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
254     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
255     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
256     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
257     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
258     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
259     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
260     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
261
262     a += MD5M_A;
263     b += MD5M_B;
264     c += MD5M_C;
265     d += MD5M_D;
266
267     u32x r_a = a;
268     u32x r_b = b;
269     u32x r_c = c;
270     u32x r_d = d;
271
272     // 2nd transform
273
274     w0_t[0] = w0[2];
275     w0_t[1] = w0[3];
276     w0_t[2] = w1[0];
277     w0_t[3] = w1[1];
278     w1_t[0] = w1[2];
279     w1_t[1] = w1[3];
280     w1_t[2] = w2[0];
281     w1_t[3] = w2[1];
282     w2_t[0] = w2[2];
283     w2_t[1] = w2[3];
284     w2_t[2] = w3[0];
285     w2_t[3] = w3[1];
286     w3_t[0] = w3[2];
287     w3_t[1] = w3[3];
288     w3_t[2] = pw_salt_len * 8;
289     w3_t[3] = 0;
290
291     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
292     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
293     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
294     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
295     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
296     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
297     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
298     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
299     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
300     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
301     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
302     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
303     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
304     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
305     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
306     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
307
308     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
309     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
310     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
311     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
312     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
313     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
314     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
315     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
316     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
317     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
318     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
319     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
320     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
321     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
322     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
323     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
324
325     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
326     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
327     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
328     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
329     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
330     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
331     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
332     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
333     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
334     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
335     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
336     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
337     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
338     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
339     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
340     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
341
342     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
343     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
344     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
345     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
346     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
347     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
348     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
349     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
350     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
351     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
352     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
353     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
354     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
355     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
356     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
357     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
358
359     a += r_a;
360     b += r_b;
361     c += r_c;
362     d += r_d;
363
364     COMPARE_M_SIMD (a, d, c, b);
365   }
366 }
367
368 __kernel void m11000_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)
369 {
370 }
371
372 __kernel void m11000_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)
373 {
374 }
375
376 __kernel void m11000_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)
377 {
378   /**
379    * modifier
380    */
381
382   const u32 lid = get_local_id (0);
383
384   /**
385    * base
386    */
387
388   const u32 gid = get_global_id (0);
389
390   if (gid >= gid_max) return;
391
392   u32 pw_buf0[4];
393   u32 pw_buf1[4];
394
395   pw_buf0[0] = pws[gid].i[0];
396   pw_buf0[1] = pws[gid].i[1];
397   pw_buf0[2] = pws[gid].i[2];
398   pw_buf0[3] = pws[gid].i[3];
399   pw_buf1[0] = pws[gid].i[4];
400   pw_buf1[1] = pws[gid].i[5];
401   pw_buf1[2] = pws[gid].i[6];
402   pw_buf1[3] = pws[gid].i[7];
403
404   const u32 pw_l_len = pws[gid].pw_len;
405
406   /**
407    * salt
408    */
409
410   u32 salt_buf0[4];
411   u32 salt_buf1[4];
412   u32 salt_buf2[4];
413   u32 salt_buf3[4];
414
415   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
416   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
417   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
418   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
419   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
420   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
421   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
422   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
423   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
424   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
425   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
426   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
427   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
428   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
429   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
430   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
431
432   const u32 salt_len = salt_bufs[salt_pos].salt_len;
433
434   /**
435    * digest
436    */
437
438   const u32 search[4] =
439   {
440     digests_buf[digests_offset].digest_buf[DGST_R0],
441     digests_buf[digests_offset].digest_buf[DGST_R1],
442     digests_buf[digests_offset].digest_buf[DGST_R2],
443     digests_buf[digests_offset].digest_buf[DGST_R3]
444   };
445
446   /**
447    * loop
448    */
449
450   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
451   {
452     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
453
454     const u32x pw_len = pw_l_len + pw_r_len;
455
456     /**
457      * concat password candidate
458      */
459
460     u32x wordl0[4] = { 0 };
461     u32x wordl1[4] = { 0 };
462     u32x wordl2[4] = { 0 };
463     u32x wordl3[4] = { 0 };
464
465     wordl0[0] = pw_buf0[0];
466     wordl0[1] = pw_buf0[1];
467     wordl0[2] = pw_buf0[2];
468     wordl0[3] = pw_buf0[3];
469     wordl1[0] = pw_buf1[0];
470     wordl1[1] = pw_buf1[1];
471     wordl1[2] = pw_buf1[2];
472     wordl1[3] = pw_buf1[3];
473
474     u32x wordr0[4] = { 0 };
475     u32x wordr1[4] = { 0 };
476     u32x wordr2[4] = { 0 };
477     u32x wordr3[4] = { 0 };
478
479     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
480     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
481     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
482     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
483     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
484     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
485     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
486     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
487
488     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
489     {
490       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
491     }
492     else
493     {
494       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
495     }
496
497     u32x w0[4];
498     u32x w1[4];
499     u32x w2[4];
500     u32x w3[4];
501
502     w0[0] = wordl0[0] | wordr0[0];
503     w0[1] = wordl0[1] | wordr0[1];
504     w0[2] = wordl0[2] | wordr0[2];
505     w0[3] = wordl0[3] | wordr0[3];
506     w1[0] = wordl1[0] | wordr1[0];
507     w1[1] = wordl1[1] | wordr1[1];
508     w1[2] = wordl1[2] | wordr1[2];
509     w1[3] = wordl1[3] | wordr1[3];
510     w2[0] = wordl2[0] | wordr2[0];
511     w2[1] = wordl2[1] | wordr2[1];
512     w2[2] = wordl2[2] | wordr2[2];
513     w2[3] = wordl2[3] | wordr2[3];
514     w3[0] = wordl3[0] | wordr3[0];
515     w3[1] = wordl3[1] | wordr3[1];
516     w3[2] = wordl3[2] | wordr3[2];
517     w3[3] = wordl3[3] | wordr3[3];
518
519     const u32x pw_salt_len = salt_len + pw_len;
520
521     /**
522      * prepend salt
523      */
524
525     // first step fixed 56 bytes of salt
526     // after 56 byte salt, we have beginning of the password
527
528     u32x w0_t[4];
529     u32x w1_t[4];
530     u32x w2_t[4];
531     u32x w3_t[4];
532
533     w0_t[0] = salt_buf0[0];
534     w0_t[1] = salt_buf0[1];
535     w0_t[2] = salt_buf0[2];
536     w0_t[3] = salt_buf0[3];
537     w1_t[0] = salt_buf1[0];
538     w1_t[1] = salt_buf1[1];
539     w1_t[2] = salt_buf1[2];
540     w1_t[3] = salt_buf1[3];
541     w2_t[0] = salt_buf2[0];
542     w2_t[1] = salt_buf2[1];
543     w2_t[2] = salt_buf2[2];
544     w2_t[3] = salt_buf2[3];
545     w3_t[0] = salt_buf3[0];
546     w3_t[1] = salt_buf3[1];
547     w3_t[2] = w0[0];
548     w3_t[3] = w0[1];
549
550     /**
551      * md5
552      */
553
554     u32x a = MD5M_A;
555     u32x b = MD5M_B;
556     u32x c = MD5M_C;
557     u32x d = MD5M_D;
558
559     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
560     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
561     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
562     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
563     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
564     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
565     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
566     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
567     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
568     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
569     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
570     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
571     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
572     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
573     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
574     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
575
576     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
577     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
578     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
579     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
580     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
581     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
582     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
583     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
584     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
585     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
586     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
587     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
588     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
589     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
590     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
591     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
592
593     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
594     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
595     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
596     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
597     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
598     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
599     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
600     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
601     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
602     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
603     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
604     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
605     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
606     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
607     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
608     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
609
610     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
611     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
612     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
613     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
614     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
615     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
616     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
617     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
618     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
619     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
620     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
621     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
622     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
623     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
624     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
625     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
626
627     a += MD5M_A;
628     b += MD5M_B;
629     c += MD5M_C;
630     d += MD5M_D;
631
632     u32x r_a = a;
633     u32x r_b = b;
634     u32x r_c = c;
635     u32x r_d = d;
636
637     // 2nd transform
638
639     w0_t[0] = w0[2];
640     w0_t[1] = w0[3];
641     w0_t[2] = w1[0];
642     w0_t[3] = w1[1];
643     w1_t[0] = w1[2];
644     w1_t[1] = w1[3];
645     w1_t[2] = w2[0];
646     w1_t[3] = w2[1];
647     w2_t[0] = w2[2];
648     w2_t[1] = w2[3];
649     w2_t[2] = w3[0];
650     w2_t[3] = w3[1];
651     w3_t[0] = w3[2];
652     w3_t[1] = w3[3];
653     w3_t[2] = pw_salt_len * 8;
654     w3_t[3] = 0;
655
656     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
657     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
658     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
659     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
660     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
661     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
662     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
663     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
664     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
665     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
666     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
667     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
668     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
669     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
670     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
671     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
672
673     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
674     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
675     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
676     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
677     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
678     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
679     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
680     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
681     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
682     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
683     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
684     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
685     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
686     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
687     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
688     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
689
690     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
691     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
692     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
693     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
694     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
695     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
696     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
697     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
698     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
699     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
700     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
701     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
702     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
703     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
704     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
705     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
706
707     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
708     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
709     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
710     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
711     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
712     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
713     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
714     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
715     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
716     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
717     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
718     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
719     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
720     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
721     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
722     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
723
724     a += r_a;
725     b += r_b;
726     c += r_c;
727     d += r_d;
728
729     COMPARE_S_SIMD (a, d, c, b);
730   }
731 }
732
733 __kernel void m11000_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)
734 {
735 }
736
737 __kernel void m11000_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)
738 {
739 }