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