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