Add mangling code
[hashcat.git] / OpenCL / m00000_a1_m.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_vendor.cl"
11 #include "inc_hash_constants.h"
12 #include "inc_hash_functions.cl"
13 #include "inc_types.cl"
14 #include "inc_common.cl"
15 #include "inc_simd.cl"
16 #include "mangle.cl"
17
18 __kernel void m00000_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
19 {
20   /**
21    * modifier
22    */
23
24   const u32 lid = get_local_id (0);
25
26   /**
27    * base
28    */
29
30   const u32 gid = get_global_id (0);
31
32   if (gid >= gid_max) return;
33
34   u32 pw_buf0[4];
35   u32 pw_buf1[4];
36
37   pw_buf0[0] = pws[gid].i[0];
38   pw_buf0[1] = pws[gid].i[1];
39   pw_buf0[2] = pws[gid].i[2];
40   pw_buf0[3] = pws[gid].i[3];
41   pw_buf1[0] = pws[gid].i[4];
42   pw_buf1[1] = pws[gid].i[5];
43   pw_buf1[2] = pws[gid].i[6];
44   pw_buf1[3] = pws[gid].i[7];
45
46   const u32 pw_l_len = pws[gid].pw_len;
47
48   /**
49    * loop
50    */
51
52   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
53   {
54     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
55
56     u32x pw_len = pw_l_len + pw_r_len;
57
58     /**
59      * concat password candidate
60      */
61
62     u32x wordl0[4] = { 0 };
63     u32x wordl1[4] = { 0 };
64     u32x wordl2[4] = { 0 };
65     u32x wordl3[4] = { 0 };
66
67     wordl0[0] = pw_buf0[0];
68     wordl0[1] = pw_buf0[1];
69     wordl0[2] = pw_buf0[2];
70     wordl0[3] = pw_buf0[3];
71     wordl1[0] = pw_buf1[0];
72     wordl1[1] = pw_buf1[1];
73     wordl1[2] = pw_buf1[2];
74     wordl1[3] = pw_buf1[3];
75
76     u32x wordr0[4] = { 0 };
77     u32x wordr1[4] = { 0 };
78     u32x wordr2[4] = { 0 };
79     u32x wordr3[4] = { 0 };
80
81     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
82     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
83     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
84     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
85     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
86     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
87     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
88     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
89
90     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
91     {
92       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
93     }
94     else
95     {
96       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
97     }
98
99     u32x w0[4];
100     u32x w1[4];
101     u32x w2[4];
102     u32x w3[4];
103
104     w0[0] = wordl0[0] | wordr0[0];
105     w0[1] = wordl0[1] | wordr0[1];
106     w0[2] = wordl0[2] | wordr0[2];
107     w0[3] = wordl0[3] | wordr0[3];
108     w1[0] = wordl1[0] | wordr1[0];
109     w1[1] = wordl1[1] | wordr1[1];
110     w1[2] = wordl1[2] | wordr1[2];
111     w1[3] = wordl1[3] | wordr1[3];
112
113     pw_len = mangle(w0, w1, pw_len);
114     append_0x80_2x4_VV (w0, w1, pw_len);
115
116     w2[0] = 0;
117     w2[1] = 0;
118     w2[2] = 0;
119     w2[3] = 0;
120     w3[0] = 0;
121     w3[1] = 0;
122
123     //w2[0] = wordl2[0] | wordr2[0];
124     //w2[1] = wordl2[1] | wordr2[1];
125     //w2[2] = wordl2[2] | wordr2[2];
126     //w2[3] = wordl2[3] | wordr2[3];
127     //w3[0] = wordl3[0] | wordr3[0];
128     //w3[1] = wordl3[1] | wordr3[1];
129
130     w3[2] = pw_len * 8;
131     w3[3] = 0;
132
133     /**
134      * md5
135      */
136
137     u32x a = MD5M_A;
138     u32x b = MD5M_B;
139     u32x c = MD5M_C;
140     u32x d = MD5M_D;
141
142     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
143     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
144     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
145     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
146     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
147     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
148     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
149     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
150     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
151     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
152     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
153     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
154     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
155     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
156     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
157     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
158
159     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
160     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
161     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
162     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
163     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
164     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
165     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
166     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
167     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
168     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
169     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
170     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
171     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
172     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
173     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
174     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
175
176     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
177     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
178     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
179     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
180     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
181     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
182     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
183     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
184     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
185     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
186     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
187     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
188     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
189     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
190     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
191     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
192
193     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
194     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
195     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
196     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
197     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
198     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
199     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
200     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
201     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
202     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
203     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
204     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
205     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
206     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
207     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
208     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
209
210     COMPARE_M_SIMD (a, d, c, b);
211   }
212 }
213
214 __kernel void m00000_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
215 {
216 }
217
218 __kernel void m00000_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
219 {
220 }
221
222 __kernel void m00000_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
223 {
224   /**
225    * modifier
226    */
227
228   const u32 lid = get_local_id (0);
229
230   /**
231    * base
232    */
233
234   const u32 gid = get_global_id (0);
235
236   if (gid >= gid_max) return;
237
238   u32 pw_buf0[4];
239   u32 pw_buf1[4];
240
241   pw_buf0[0] = pws[gid].i[0];
242   pw_buf0[1] = pws[gid].i[1];
243   pw_buf0[2] = pws[gid].i[2];
244   pw_buf0[3] = pws[gid].i[3];
245   pw_buf1[0] = pws[gid].i[4];
246   pw_buf1[1] = pws[gid].i[5];
247   pw_buf1[2] = pws[gid].i[6];
248   pw_buf1[3] = pws[gid].i[7];
249
250   const u32 pw_l_len = pws[gid].pw_len;
251
252   /**
253    * digest
254    */
255
256   const u32 search[4] =
257   {
258     digests_buf[digests_offset].digest_buf[DGST_R0],
259     digests_buf[digests_offset].digest_buf[DGST_R1],
260     digests_buf[digests_offset].digest_buf[DGST_R2],
261     digests_buf[digests_offset].digest_buf[DGST_R3]
262   };
263
264   /**
265    * loop
266    */
267
268   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
269   {
270     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
271
272     u32x pw_len = pw_l_len + pw_r_len;
273
274     /**
275      * concat password candidate
276      */
277
278     u32x wordl0[4] = { 0 };
279     u32x wordl1[4] = { 0 };
280     u32x wordl2[4] = { 0 };
281     u32x wordl3[4] = { 0 };
282
283     wordl0[0] = pw_buf0[0];
284     wordl0[1] = pw_buf0[1];
285     wordl0[2] = pw_buf0[2];
286     wordl0[3] = pw_buf0[3];
287     wordl1[0] = pw_buf1[0];
288     wordl1[1] = pw_buf1[1];
289     wordl1[2] = pw_buf1[2];
290     wordl1[3] = pw_buf1[3];
291
292     u32x wordr0[4] = { 0 };
293     u32x wordr1[4] = { 0 };
294     u32x wordr2[4] = { 0 };
295     u32x wordr3[4] = { 0 };
296
297     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
298     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
299     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
300     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
301     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
302     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
303     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
304     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
305
306     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
307     {
308       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
309     }
310     else
311     {
312       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
313     }
314
315     u32x w0[4];
316     u32x w1[4];
317     u32x w2[4];
318     u32x w3[4];
319
320     w0[0] = wordl0[0] | wordr0[0];
321     w0[1] = wordl0[1] | wordr0[1];
322     w0[2] = wordl0[2] | wordr0[2];
323     w0[3] = wordl0[3] | wordr0[3];
324     w1[0] = wordl1[0] | wordr1[0];
325     w1[1] = wordl1[1] | wordr1[1];
326     w1[2] = wordl1[2] | wordr1[2];
327     w1[3] = wordl1[3] | wordr1[3];
328
329     pw_len = mangle(w0, w1, pw_len);
330     append_0x80_2x4_VV (w0, w1, pw_len);
331
332     w2[0] = 0;
333     w2[1] = 0;
334     w2[2] = 0;
335     w2[3] = 0;
336     w3[0] = 0;
337     w3[1] = 0;
338
339     //w2[0] = wordl2[0] | wordr2[0];
340     //w2[1] = wordl2[1] | wordr2[1];
341     //w2[2] = wordl2[2] | wordr2[2];
342     //w2[3] = wordl2[3] | wordr2[3];
343     //w3[0] = wordl3[0] | wordr3[0];
344     //w3[1] = wordl3[1] | wordr3[1];
345
346     w3[2] = pw_len * 8;
347     w3[3] = 0;
348
349     /**
350      * md5
351      */
352
353     u32x a = MD5M_A;
354     u32x b = MD5M_B;
355     u32x c = MD5M_C;
356     u32x d = MD5M_D;
357
358     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
359     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
360     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
361     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
362     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
363     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
364     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
365     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
366     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
367     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
368     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
369     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
370     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
371     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
372     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
373     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
374
375     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
376     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
377     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
378     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
379     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
380     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
381     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
382     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
383     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
384     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
385     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
386     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
387     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
388     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
389     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
390     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
391
392     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
393     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
394     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
395     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
396     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
397     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
398     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
399     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
400     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
401     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
402     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
403     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
404     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
405     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
406     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
407     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
408
409     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
410     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
411     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
412     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
413     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
414     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
415     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
416     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
417     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
418     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
419     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
420     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
421     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
422
423     if (MATCHES_NONE_VS (a, search[0])) continue;
424
425     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
426     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
427     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
428
429     COMPARE_S_SIMD (a, d, c, b);
430   }
431 }
432
433 __kernel void m00000_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
434 {
435 }
436
437 __kernel void m00000_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
438 {
439 }