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