Revert "Zero pws_buf before reuse"
[hashcat.git] / OpenCL / m00010_a1.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 "OpenCL/simd.c"
22
23 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
24 {
25   /**
26    * modifier
27    */
28
29   const u32 lid = get_local_id (0);
30
31   /**
32    * base
33    */
34
35   const u32 gid = get_global_id (0);
36
37   if (gid >= gid_max) return;
38
39   u32 pws0[4] = { 0 };
40   u32 pws1[4] = { 0 };
41
42   pws0[0] = pws[gid].i[0];
43   pws0[1] = pws[gid].i[1];
44   pws0[2] = pws[gid].i[2];
45   pws0[3] = pws[gid].i[3];
46   pws1[0] = pws[gid].i[4];
47   pws1[1] = pws[gid].i[5];
48   pws1[2] = pws[gid].i[6];
49   pws1[3] = pws[gid].i[7];
50
51   const u32 pw_l_len = pws[gid].pw_len;
52
53   /**
54    * salt
55    */
56
57   u32 salt_buf0[4];
58   u32 salt_buf1[4];
59
60   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
61   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[1];
62   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[2];
63   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[3];
64   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[4];
65   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[5];
66   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[6];
67   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[7];
68
69   const u32 salt_len = salt_bufs[salt_pos].salt_len;
70
71   /**
72    * loop
73    */
74
75   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos += VECT_SIZE)
76   {
77     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
78
79     const u32x pw_len = pw_l_len + pw_r_len;
80
81     /**
82      * concat password candidate
83      */
84
85     u32x wordl0[4] = { 0 };
86     u32x wordl1[4] = { 0 };
87     u32x wordl2[4] = { 0 };
88     u32x wordl3[4] = { 0 };
89
90     wordl0[0] = pws0[0];
91     wordl0[1] = pws0[1];
92     wordl0[2] = pws0[2];
93     wordl0[3] = pws0[3];
94     wordl1[0] = pws1[0];
95     wordl1[1] = pws1[1];
96     wordl1[2] = pws1[2];
97     wordl1[3] = pws1[3];
98
99     u32x wordr0[4] = { 0 };
100     u32x wordr1[4] = { 0 };
101     u32x wordr2[4] = { 0 };
102     u32x wordr3[4] = { 0 };
103
104     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
105     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
106     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
107     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
108     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
109     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
110     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
111     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
112
113     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
114     {
115       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
116     }
117     else
118     {
119       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
120     }
121
122     u32x w0[4];
123     u32x w1[4];
124     u32x w2[4];
125     u32x w3[4];
126
127     w0[0] = wordl0[0] | wordr0[0];
128     w0[1] = wordl0[1] | wordr0[1];
129     w0[2] = wordl0[2] | wordr0[2];
130     w0[3] = wordl0[3] | wordr0[3];
131     w1[0] = wordl1[0] | wordr1[0];
132     w1[1] = wordl1[1] | wordr1[1];
133     w1[2] = wordl1[2] | wordr1[2];
134     w1[3] = wordl1[3] | wordr1[3];
135     w2[0] = wordl2[0] | wordr2[0];
136     w2[1] = wordl2[1] | wordr2[1];
137     w2[2] = wordl2[2] | wordr2[2];
138     w2[3] = wordl2[3] | wordr2[3];
139     w3[0] = wordl3[0] | wordr3[0];
140     w3[1] = wordl3[1] | wordr3[1];
141     w3[2] = 0;
142     w3[3] = 0;
143
144     /**
145      * append salt
146      */
147
148     u32x s0[4] = { 0 };
149     u32x s1[4] = { 0 };
150     u32x s2[4] = { 0 };
151     u32x s3[4] = { 0 };
152
153     s0[0] = salt_buf0[0];
154     s0[1] = salt_buf0[1];
155     s0[2] = salt_buf0[2];
156     s0[3] = salt_buf0[3];
157     s1[0] = salt_buf1[0];
158     s1[1] = salt_buf1[1];
159     s1[2] = salt_buf1[2];
160     s1[3] = salt_buf1[3];
161
162     switch_buffer_by_offset_le_VV (s0, s1, s2, s3, pw_len);
163
164     const u32x pw_salt_len = pw_len + salt_len;
165
166     w0[0] |= s0[0];
167     w0[1] |= s0[1];
168     w0[2] |= s0[2];
169     w0[3] |= s0[3];
170     w1[0] |= s1[0];
171     w1[1] |= s1[1];
172     w1[2] |= s1[2];
173     w1[3] |= s1[3];
174     w2[0] |= s2[0];
175     w2[1] |= s2[1];
176     w2[2] |= s2[2];
177     w2[3] |= s2[3];
178     w3[0] |= s3[0];
179     w3[1] |= s3[1];
180     w3[2]  = pw_salt_len * 8;
181     w3[3]  = 0;
182
183     /**
184      * md5
185      */
186
187     u32x a = MD5M_A;
188     u32x b = MD5M_B;
189     u32x c = MD5M_C;
190     u32x d = MD5M_D;
191
192     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
193     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
194     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
195     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
196     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
197     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
198     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
199     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
200     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
201     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
202     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
203     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
204     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
205     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
206     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
207     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
208
209     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
210     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
211     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
212     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
213     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
214     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
215     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
216     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
217     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
218     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
219     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
220     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
221     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
222     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
223     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
224     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
225
226     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
227     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
228     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
229     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
230     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
231     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
232     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
233     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
234     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
235     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
236     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
237     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
238     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
239     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
240     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
241     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
242
243     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
244     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
245     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
246     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
247     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
248     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
249     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
250     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
251     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
252     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
253     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
254     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
255     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
256     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
257     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
258     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
259
260     COMPARE_M_SIMD (a, d, c, b);
261   }
262 }
263
264 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
265 {
266 }
267
268 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
269 {
270 }
271
272 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
273 {
274   /**
275    * modifier
276    */
277
278   const u32 lid = get_local_id (0);
279
280   /**
281    * base
282    */
283
284   const u32 gid = get_global_id (0);
285
286   if (gid >= gid_max) return;
287
288   u32 pws0[4] = { 0 };
289   u32 pws1[4] = { 0 };
290
291   pws0[0] = pws[gid].i[0];
292   pws0[1] = pws[gid].i[1];
293   pws0[2] = pws[gid].i[2];
294   pws0[3] = pws[gid].i[3];
295   pws1[0] = pws[gid].i[4];
296   pws1[1] = pws[gid].i[5];
297   pws1[2] = pws[gid].i[6];
298   pws1[3] = pws[gid].i[7];
299
300   const u32 pw_l_len = pws[gid].pw_len;
301
302   /**
303    * salt
304    */
305
306   u32 salt_buf0[4];
307   u32 salt_buf1[4];
308
309   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
310   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[1];
311   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[2];
312   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[3];
313   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[4];
314   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[5];
315   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[6];
316   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[7];
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 < combs_cnt; il_pos += VECT_SIZE)
337   {
338     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
339
340     const u32x pw_len = pw_l_len + pw_r_len;
341
342     /**
343      * concat password candidate
344      */
345
346     u32x wordl0[4] = { 0 };
347     u32x wordl1[4] = { 0 };
348     u32x wordl2[4] = { 0 };
349     u32x wordl3[4] = { 0 };
350
351     wordl0[0] = pws0[0];
352     wordl0[1] = pws0[1];
353     wordl0[2] = pws0[2];
354     wordl0[3] = pws0[3];
355     wordl1[0] = pws1[0];
356     wordl1[1] = pws1[1];
357     wordl1[2] = pws1[2];
358     wordl1[3] = pws1[3];
359
360     u32x wordr0[4] = { 0 };
361     u32x wordr1[4] = { 0 };
362     u32x wordr2[4] = { 0 };
363     u32x wordr3[4] = { 0 };
364
365     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
366     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
367     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
368     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
369     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
370     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
371     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
372     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
373
374     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
375     {
376       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
377     }
378     else
379     {
380       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
381     }
382
383     u32x w0[4];
384     u32x w1[4];
385     u32x w2[4];
386     u32x w3[4];
387
388     w0[0] = wordl0[0] | wordr0[0];
389     w0[1] = wordl0[1] | wordr0[1];
390     w0[2] = wordl0[2] | wordr0[2];
391     w0[3] = wordl0[3] | wordr0[3];
392     w1[0] = wordl1[0] | wordr1[0];
393     w1[1] = wordl1[1] | wordr1[1];
394     w1[2] = wordl1[2] | wordr1[2];
395     w1[3] = wordl1[3] | wordr1[3];
396     w2[0] = wordl2[0] | wordr2[0];
397     w2[1] = wordl2[1] | wordr2[1];
398     w2[2] = wordl2[2] | wordr2[2];
399     w2[3] = wordl2[3] | wordr2[3];
400     w3[0] = wordl3[0] | wordr3[0];
401     w3[1] = wordl3[1] | wordr3[1];
402     w3[2] = 0;
403     w3[3] = 0;
404
405     /**
406      * append salt
407      */
408
409     u32x s0[4] = { 0 };
410     u32x s1[4] = { 0 };
411     u32x s2[4] = { 0 };
412     u32x s3[4] = { 0 };
413
414     s0[0] = salt_buf0[0];
415     s0[1] = salt_buf0[1];
416     s0[2] = salt_buf0[2];
417     s0[3] = salt_buf0[3];
418     s1[0] = salt_buf1[0];
419     s1[1] = salt_buf1[1];
420     s1[2] = salt_buf1[2];
421     s1[3] = salt_buf1[3];
422
423     switch_buffer_by_offset_le_VV (s0, s1, s2, s3, pw_len);
424
425     const u32x pw_salt_len = pw_len + salt_len;
426
427     w0[0] |= s0[0];
428     w0[1] |= s0[1];
429     w0[2] |= s0[2];
430     w0[3] |= s0[3];
431     w1[0] |= s1[0];
432     w1[1] |= s1[1];
433     w1[2] |= s1[2];
434     w1[3] |= s1[3];
435     w2[0] |= s2[0];
436     w2[1] |= s2[1];
437     w2[2] |= s2[2];
438     w2[3] |= s2[3];
439     w3[0] |= s3[0];
440     w3[1] |= s3[1];
441     w3[2]  = pw_salt_len * 8;
442     w3[3]  = 0;
443
444     /**
445      * md5
446      */
447
448     u32x a = MD5M_A;
449     u32x b = MD5M_B;
450     u32x c = MD5M_C;
451     u32x d = MD5M_D;
452
453     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
454     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
455     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
456     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
457     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
458     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
459     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
460     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
461     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
462     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
463     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
464     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
465     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
466     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
467     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
468     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
469
470     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
471     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
472     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
473     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
474     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
475     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
476     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
477     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
478     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
479     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
480     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
481     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
482     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
483     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
484     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
485     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
486
487     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
488     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
489     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
490     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
491     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
492     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
493     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
494     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
495     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
496     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
497     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
498     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
499     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
500     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
501     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
502     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
503
504     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
505     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
506     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
507     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
508     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
509     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
510     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
511     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
512     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
513     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
514     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
515     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
516     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
517
518     if (MATCHES_NONE_VS (a, search[0])) continue;
519
520     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
521     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
522     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
523
524     COMPARE_S_SIMD (a, d, c, b);
525   }
526 }
527
528 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
529 {
530 }
531
532 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
533 {
534 }