Remove MD4/MD5 *H1/*H2 functions and use original H functions. Modern compilers will...
[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 a = MD5M_A;
176     u32 b = MD5M_B;
177     u32 c = MD5M_C;
178     u32 d = MD5M_D;
179
180     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
181     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
182     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
183     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
184     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
185     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
186     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
187     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
188     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
189     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
190     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
191     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
192     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
193     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
194     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
195     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
196
197     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
198     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
199     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
200     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
201     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
202     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
203     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
204     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
205     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
206     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
207     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
208     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
209     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
210     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
211     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
212     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
213
214     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
215     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
216     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
217     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
218     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
219     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
220     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
221     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
222     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
223     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
224     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
225     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
226     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
227     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
228     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
229     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
230
231     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
232     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
233     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
234     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
235     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
236     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
237     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
238     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
239     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
240     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
241     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
242     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
243     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
244     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
245     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
246     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
247
248
249     const u32 r0 = a;
250     const u32 r1 = d;
251     const u32 r2 = c;
252     const u32 r3 = b;
253
254     #include COMPARE_M
255   }
256 }
257
258 __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)
259 {
260 }
261
262 __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)
263 {
264 }
265
266 __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)
267 {
268   /**
269    * modifier
270    */
271
272   const u32 lid = get_local_id (0);
273
274   /**
275    * base
276    */
277
278   const u32 gid = get_global_id (0);
279
280   if (gid >= gid_max) return;
281
282   u32 pw_buf0[4];
283
284   pw_buf0[0] = pws[gid].i[ 0];
285   pw_buf0[1] = pws[gid].i[ 1];
286   pw_buf0[2] = pws[gid].i[ 2];
287   pw_buf0[3] = pws[gid].i[ 3];
288
289   u32 pw_buf1[4];
290
291   pw_buf1[0] = pws[gid].i[ 4];
292   pw_buf1[1] = pws[gid].i[ 5];
293   pw_buf1[2] = pws[gid].i[ 6];
294   pw_buf1[3] = pws[gid].i[ 7];
295
296   const u32 pw_len = pws[gid].pw_len;
297
298   /**
299    * salt
300    */
301
302   u32 salt_buf0[4];
303
304   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
305   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[1];
306   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[2];
307   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[3];
308
309   u32 salt_buf1[4];
310
311   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[4];
312   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[5];
313   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[6];
314   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[7];
315
316   const u32 salt_len = salt_bufs[salt_pos].salt_len;
317
318   /**
319    * digest
320    */
321
322   const u32 search[4] =
323   {
324     digests_buf[digests_offset].digest_buf[DGST_R0],
325     digests_buf[digests_offset].digest_buf[DGST_R1],
326     digests_buf[digests_offset].digest_buf[DGST_R2],
327     digests_buf[digests_offset].digest_buf[DGST_R3]
328   };
329
330   /**
331    * loop
332    */
333
334   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
335   {
336     u32 w0[4];
337
338     w0[0] = pw_buf0[0];
339     w0[1] = pw_buf0[1];
340     w0[2] = pw_buf0[2];
341     w0[3] = pw_buf0[3];
342
343     u32 w1[4];
344
345     w1[0] = pw_buf1[0];
346     w1[1] = pw_buf1[1];
347     w1[2] = pw_buf1[2];
348     w1[3] = pw_buf1[3];
349
350     u32 w2[4];
351
352     w2[0] = 0;
353     w2[1] = 0;
354     w2[2] = 0;
355     w2[3] = 0;
356
357     u32 w3[4];
358
359     w3[0] = 0;
360     w3[1] = 0;
361     w3[2] = 0;
362     w3[3] = 0;
363
364     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
365
366     /**
367      * append salt
368      */
369
370     u32 s0[4];
371
372     s0[0] = salt_buf0[0];
373     s0[1] = salt_buf0[1];
374     s0[2] = salt_buf0[2];
375     s0[3] = salt_buf0[3];
376
377     u32 s1[4];
378
379     s1[0] = salt_buf1[0];
380     s1[1] = salt_buf1[1];
381     s1[2] = salt_buf1[2];
382     s1[3] = salt_buf1[3];
383
384     u32 s2[4];
385
386     s2[0] = 0;
387     s2[1] = 0;
388     s2[2] = 0;
389     s2[3] = 0;
390
391     u32 s3[4];
392
393     s3[0] = 0;
394     s3[1] = 0;
395     s3[2] = 0;
396     s3[3] = 0;
397
398     switch_buffer_by_offset_le (s0, s1, s2, s3, out_len);
399
400     const u32 pw_salt_len = out_len + salt_len;
401
402     w0[0] |= s0[0];
403     w0[1] |= s0[1];
404     w0[2] |= s0[2];
405     w0[3] |= s0[3];
406
407     w1[0] |= s1[0];
408     w1[1] |= s1[1];
409     w1[2] |= s1[2];
410     w1[3] |= s1[3];
411
412     w2[0] |= s2[0];
413     w2[1] |= s2[1];
414     w2[2] |= s2[2];
415     w2[3] |= s2[3];
416
417     w3[0] |= s3[0];
418     w3[1] |= s3[1];
419     w3[2]  = pw_salt_len * 8;
420     w3[3]  = 0;
421
422     append_0x80_4x4 (w0, w1, w2, w3, pw_salt_len);
423
424     /**
425      * md5
426      */
427
428     u32 a = MD5M_A;
429     u32 b = MD5M_B;
430     u32 c = MD5M_C;
431     u32 d = MD5M_D;
432
433     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
434     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
435     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
436     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
437     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
438     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
439     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
440     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
441     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
442     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
443     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
444     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
445     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
446     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
447     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
448     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
449
450     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
451     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
452     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
453     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
454     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
455     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
456     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
457     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
458     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
459     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
460     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
461     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
462     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
463     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
464     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
465     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
466
467     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
468     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
469     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
470     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
471     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
472     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
473     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
474     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
475     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
476     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
477     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
478     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
479     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
480     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
481     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
482     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
483
484     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
485     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
486     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
487     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
488     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
489     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
490     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
491     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
492     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
493     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
494     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
495     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
496     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
497
498     bool q_cond = allx (search[0] != a);
499
500     if (q_cond) continue;
501
502     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
503     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
504     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
505
506
507     const u32 r0 = a;
508     const u32 r1 = d;
509     const u32 r2 = c;
510     const u32 r3 = b;
511
512     #include COMPARE_S
513   }
514 }
515
516 __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)
517 {
518 }
519
520 __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)
521 {
522 }