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