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