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