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