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