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