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