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