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