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