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