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