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