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