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