Remove MD4/MD5 *H1/*H2 functions and use original H functions. Modern compilers will...
[hashcat.git] / OpenCL / m00040_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 m00040_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      * prepend salt
115      */
116
117     const u32 out_salt_len = (out_len * 2) + salt_len;
118
119     u32 w0_t[4];
120     u32 w1_t[4];
121     u32 w2_t[4];
122     u32 w3_t[4];
123
124     make_unicode (w0, w0_t, w1_t);
125     make_unicode (w1, w2_t, w3_t);
126
127     switch_buffer_by_offset_le (w0_t, w1_t, w2_t, w3_t, salt_len);
128
129     w0_t[0] |= salt_buf0[0];
130     w0_t[1] |= salt_buf0[1];
131     w0_t[2] |= salt_buf0[2];
132     w0_t[3] |= salt_buf0[3];
133     w1_t[0] |= salt_buf1[0];
134     w1_t[1] |= salt_buf1[1];
135     w1_t[2] |= salt_buf1[2];
136     w1_t[3] |= salt_buf1[3];
137
138     append_0x80_4x4 (w0_t, w1_t, w2_t, w3_t, out_salt_len);
139
140     w3_t[2] = out_salt_len * 8;
141
142     /**
143      * md5
144      */
145
146     u32 a = MD5M_A;
147     u32 b = MD5M_B;
148     u32 c = MD5M_C;
149     u32 d = MD5M_D;
150
151     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
152     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
153     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
154     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
155     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
156     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
157     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
158     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
159     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
160     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
161     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
162     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
163     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
164     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
165     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
166     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
167
168     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
169     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
170     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
171     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
172     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
173     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
174     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
175     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
176     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
177     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
178     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
179     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
180     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
181     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
182     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
183     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
184
185     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
186     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
187     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
188     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
189     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
190     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
191     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
192     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
193     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
194     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
195     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
196     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
197     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
198     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
199     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
200     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
201
202     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
203     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
204     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
205     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
206     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
207     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
208     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
209     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
210     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
211     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
212     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
213     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
214     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
215     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
216     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
217     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
218
219
220     const u32 r0 = a;
221     const u32 r1 = d;
222     const u32 r2 = c;
223     const u32 r3 = b;
224
225     #include COMPARE_M
226   }
227 }
228
229 __kernel void m00040_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)
230 {
231 }
232
233 __kernel void m00040_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)
234 {
235 }
236
237 __kernel void m00040_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)
238 {
239   /**
240    * modifier
241    */
242
243   const u32 lid = get_local_id (0);
244
245   /**
246    * base
247    */
248
249   const u32 gid = get_global_id (0);
250
251   if (gid >= gid_max) return;
252
253   u32 pw_buf0[4];
254
255   pw_buf0[0] = pws[gid].i[ 0];
256   pw_buf0[1] = pws[gid].i[ 1];
257   pw_buf0[2] = pws[gid].i[ 2];
258   pw_buf0[3] = pws[gid].i[ 3];
259
260   u32 pw_buf1[4];
261
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
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
280   u32 salt_buf1[4];
281
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
287   const u32 salt_len = salt_bufs[salt_pos].salt_len;
288
289   /**
290    * digest
291    */
292
293   const u32 search[4] =
294   {
295     digests_buf[digests_offset].digest_buf[DGST_R0],
296     digests_buf[digests_offset].digest_buf[DGST_R1],
297     digests_buf[digests_offset].digest_buf[DGST_R2],
298     digests_buf[digests_offset].digest_buf[DGST_R3]
299   };
300
301   /**
302    * loop
303    */
304
305   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
306   {
307     u32 w0[4];
308
309     w0[0] = pw_buf0[0];
310     w0[1] = pw_buf0[1];
311     w0[2] = pw_buf0[2];
312     w0[3] = pw_buf0[3];
313
314     u32 w1[4];
315
316     w1[0] = pw_buf1[0];
317     w1[1] = pw_buf1[1];
318     w1[2] = pw_buf1[2];
319     w1[3] = pw_buf1[3];
320
321     u32 w2[4];
322
323     w2[0] = 0;
324     w2[1] = 0;
325     w2[2] = 0;
326     w2[3] = 0;
327
328     u32 w3[4];
329
330     w3[0] = 0;
331     w3[1] = 0;
332     w3[2] = 0;
333     w3[3] = 0;
334
335     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
336
337     /**
338      * prepend salt
339      */
340
341     const u32 out_salt_len = (out_len * 2) + salt_len;
342
343     u32 w0_t[4];
344     u32 w1_t[4];
345     u32 w2_t[4];
346     u32 w3_t[4];
347
348     make_unicode (w0, w0_t, w1_t);
349     make_unicode (w1, w2_t, w3_t);
350
351     switch_buffer_by_offset_le (w0_t, w1_t, w2_t, w3_t, salt_len);
352
353     w0_t[0] |= salt_buf0[0];
354     w0_t[1] |= salt_buf0[1];
355     w0_t[2] |= salt_buf0[2];
356     w0_t[3] |= salt_buf0[3];
357     w1_t[0] |= salt_buf1[0];
358     w1_t[1] |= salt_buf1[1];
359     w1_t[2] |= salt_buf1[2];
360     w1_t[3] |= salt_buf1[3];
361
362     append_0x80_4x4 (w0_t, w1_t, w2_t, w3_t, out_salt_len);
363
364     w3_t[2] = out_salt_len * 8;
365
366     /**
367      * md5
368      */
369
370     u32 a = MD5M_A;
371     u32 b = MD5M_B;
372     u32 c = MD5M_C;
373     u32 d = MD5M_D;
374
375     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
376     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
377     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
378     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
379     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
380     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
381     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
382     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
383     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
384     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
385     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
386     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
387     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
388     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
389     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
390     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
391
392     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
393     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
394     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
395     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
396     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
397     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
398     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
399     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
400     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
401     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
402     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
403     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
404     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
405     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
406     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
407     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
408
409     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
410     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
411     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
412     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
413     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
414     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
415     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
416     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
417     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
418     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
419     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
420     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
421     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
422     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
423     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
424     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
425
426     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
427     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
428     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
429     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
430     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
431     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
432     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
433     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
434     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
435     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
436     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
437     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
438     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
439
440     bool q_cond = allx (search[0] != a);
441
442     if (q_cond) continue;
443
444     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
445     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
446     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
447
448
449     const u32 r0 = a;
450     const u32 r1 = d;
451     const u32 r2 = c;
452     const u32 r3 = b;
453
454     #include COMPARE_S
455   }
456 }
457
458 __kernel void m00040_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)
459 {
460 }
461
462 __kernel void m00040_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)
463 {
464 }