- Added inline declaration to functions from simd.c, common.c, rp.c and types_ocl...
[hashcat.git] / OpenCL / m01740_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _SHA512_
7
8 #define NEW_SIMD_CODE
9
10 #include "include/constants.h"
11 #include "include/kernel_vendor.h"
12
13 #define DGST_R0 14
14 #define DGST_R1 15
15 #define DGST_R2 6
16 #define DGST_R3 7
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 __constant u64 k_sha512[80] =
24 {
25   SHA512C00, SHA512C01, SHA512C02, SHA512C03,
26   SHA512C04, SHA512C05, SHA512C06, SHA512C07,
27   SHA512C08, SHA512C09, SHA512C0a, SHA512C0b,
28   SHA512C0c, SHA512C0d, SHA512C0e, SHA512C0f,
29   SHA512C10, SHA512C11, SHA512C12, SHA512C13,
30   SHA512C14, SHA512C15, SHA512C16, SHA512C17,
31   SHA512C18, SHA512C19, SHA512C1a, SHA512C1b,
32   SHA512C1c, SHA512C1d, SHA512C1e, SHA512C1f,
33   SHA512C20, SHA512C21, SHA512C22, SHA512C23,
34   SHA512C24, SHA512C25, SHA512C26, SHA512C27,
35   SHA512C28, SHA512C29, SHA512C2a, SHA512C2b,
36   SHA512C2c, SHA512C2d, SHA512C2e, SHA512C2f,
37   SHA512C30, SHA512C31, SHA512C32, SHA512C33,
38   SHA512C34, SHA512C35, SHA512C36, SHA512C37,
39   SHA512C38, SHA512C39, SHA512C3a, SHA512C3b,
40   SHA512C3c, SHA512C3d, SHA512C3e, SHA512C3f,
41   SHA512C40, SHA512C41, SHA512C42, SHA512C43,
42   SHA512C44, SHA512C45, SHA512C46, SHA512C47,
43   SHA512C48, SHA512C49, SHA512C4a, SHA512C4b,
44   SHA512C4c, SHA512C4d, SHA512C4e, SHA512C4f,
45 };
46
47 void sha512_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u64x digest[8])
48 {
49   u64x w0_t = hl32_to_64 (w0[0], w0[1]);
50   u64x w1_t = hl32_to_64 (w0[2], w0[3]);
51   u64x w2_t = hl32_to_64 (w1[0], w1[1]);
52   u64x w3_t = hl32_to_64 (w1[2], w1[3]);
53   u64x w4_t = hl32_to_64 (w2[0], w2[1]);
54   u64x w5_t = hl32_to_64 (w2[2], w2[3]);
55   u64x w6_t = hl32_to_64 (w3[0], w3[1]);
56   u64x w7_t = 0;
57   u64x w8_t = 0;
58   u64x w9_t = 0;
59   u64x wa_t = 0;
60   u64x wb_t = 0;
61   u64x wc_t = 0;
62   u64x wd_t = 0;
63   u64x we_t = 0;
64   u64x wf_t = hl32_to_64 (w3[2], w3[3]);
65
66   u64x a = digest[0];
67   u64x b = digest[1];
68   u64x c = digest[2];
69   u64x d = digest[3];
70   u64x e = digest[4];
71   u64x f = digest[5];
72   u64x g = digest[6];
73   u64x h = digest[7];
74
75   #define ROUND_EXPAND()                            \
76   {                                                 \
77     w0_t = SHA512_EXPAND (we_t, w9_t, w1_t, w0_t);  \
78     w1_t = SHA512_EXPAND (wf_t, wa_t, w2_t, w1_t);  \
79     w2_t = SHA512_EXPAND (w0_t, wb_t, w3_t, w2_t);  \
80     w3_t = SHA512_EXPAND (w1_t, wc_t, w4_t, w3_t);  \
81     w4_t = SHA512_EXPAND (w2_t, wd_t, w5_t, w4_t);  \
82     w5_t = SHA512_EXPAND (w3_t, we_t, w6_t, w5_t);  \
83     w6_t = SHA512_EXPAND (w4_t, wf_t, w7_t, w6_t);  \
84     w7_t = SHA512_EXPAND (w5_t, w0_t, w8_t, w7_t);  \
85     w8_t = SHA512_EXPAND (w6_t, w1_t, w9_t, w8_t);  \
86     w9_t = SHA512_EXPAND (w7_t, w2_t, wa_t, w9_t);  \
87     wa_t = SHA512_EXPAND (w8_t, w3_t, wb_t, wa_t);  \
88     wb_t = SHA512_EXPAND (w9_t, w4_t, wc_t, wb_t);  \
89     wc_t = SHA512_EXPAND (wa_t, w5_t, wd_t, wc_t);  \
90     wd_t = SHA512_EXPAND (wb_t, w6_t, we_t, wd_t);  \
91     we_t = SHA512_EXPAND (wc_t, w7_t, wf_t, we_t);  \
92     wf_t = SHA512_EXPAND (wd_t, w8_t, w0_t, wf_t);  \
93   }
94
95   #define ROUND_STEP(i)                                                                   \
96   {                                                                                       \
97     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w0_t, k_sha512[i +  0]); \
98     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w1_t, k_sha512[i +  1]); \
99     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, w2_t, k_sha512[i +  2]); \
100     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, w3_t, k_sha512[i +  3]); \
101     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, w4_t, k_sha512[i +  4]); \
102     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, w5_t, k_sha512[i +  5]); \
103     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, w6_t, k_sha512[i +  6]); \
104     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, w7_t, k_sha512[i +  7]); \
105     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w8_t, k_sha512[i +  8]); \
106     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w9_t, k_sha512[i +  9]); \
107     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, wa_t, k_sha512[i + 10]); \
108     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, wb_t, k_sha512[i + 11]); \
109     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, wc_t, k_sha512[i + 12]); \
110     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, wd_t, k_sha512[i + 13]); \
111     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, we_t, k_sha512[i + 14]); \
112     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, wf_t, k_sha512[i + 15]); \
113   }
114
115   ROUND_STEP (0);
116
117   #pragma unroll
118   for (int i = 16; i < 80; i += 16)
119   {
120     ROUND_EXPAND (); ROUND_STEP (i);
121   }
122
123   /* rev
124   digest[0] += a;
125   digest[1] += b;
126   digest[2] += c;
127   digest[3] += d;
128   digest[4] += e;
129   digest[5] += f;
130   digest[6] += g;
131   digest[7] += h;
132   */
133
134   digest[0] = a;
135   digest[1] = b;
136   digest[2] = c;
137   digest[3] = d;
138   digest[4] = e;
139   digest[5] = f;
140   digest[6] = g;
141   digest[7] = h;
142 }
143
144 __kernel void m01740_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)
145 {
146   /**
147    * modifier
148    */
149
150   const u32 lid = get_local_id (0);
151
152   /**
153    * base
154    */
155
156   const u32 gid = get_global_id (0);
157
158   if (gid >= gid_max) return;
159
160   u32 pw_buf0[4];
161   u32 pw_buf1[4];
162
163   pw_buf0[0] = pws[gid].i[0];
164   pw_buf0[1] = pws[gid].i[1];
165   pw_buf0[2] = pws[gid].i[2];
166   pw_buf0[3] = pws[gid].i[3];
167   pw_buf1[0] = pws[gid].i[4];
168   pw_buf1[1] = pws[gid].i[5];
169   pw_buf1[2] = pws[gid].i[6];
170   pw_buf1[3] = pws[gid].i[7];
171
172   const u32 pw_l_len = pws[gid].pw_len;
173
174   /**
175    * salt
176    */
177
178   u32 salt_buf0[4];
179   u32 salt_buf1[4];
180   u32 salt_buf2[4];
181   u32 salt_buf3[4];
182
183   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
184   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
185   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
186   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
187   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
188   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
189   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
190   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
191   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
192   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
193   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
194   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
195   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
196   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
197   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
198   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
199
200   const u32 salt_len = salt_bufs[salt_pos].salt_len;
201
202   /**
203    * loop
204    */
205
206   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
207   {
208     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
209
210     const u32x pw_len = pw_l_len + pw_r_len;
211
212     /**
213      * concat password candidate
214      */
215
216     u32x wordl0[4] = { 0 };
217     u32x wordl1[4] = { 0 };
218     u32x wordl2[4] = { 0 };
219     u32x wordl3[4] = { 0 };
220
221     wordl0[0] = pw_buf0[0];
222     wordl0[1] = pw_buf0[1];
223     wordl0[2] = pw_buf0[2];
224     wordl0[3] = pw_buf0[3];
225     wordl1[0] = pw_buf1[0];
226     wordl1[1] = pw_buf1[1];
227     wordl1[2] = pw_buf1[2];
228     wordl1[3] = pw_buf1[3];
229
230     u32x wordr0[4] = { 0 };
231     u32x wordr1[4] = { 0 };
232     u32x wordr2[4] = { 0 };
233     u32x wordr3[4] = { 0 };
234
235     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
236     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
237     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
238     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
239     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
240     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
241     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
242     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
243
244     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
245     {
246       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
247     }
248     else
249     {
250       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
251     }
252
253     u32x w0[4];
254     u32x w1[4];
255     u32x w2[4];
256     u32x w3[4];
257
258     w0[0] = wordl0[0] | wordr0[0];
259     w0[1] = wordl0[1] | wordr0[1];
260     w0[2] = wordl0[2] | wordr0[2];
261     w0[3] = wordl0[3] | wordr0[3];
262     w1[0] = wordl1[0] | wordr1[0];
263     w1[1] = wordl1[1] | wordr1[1];
264     w1[2] = wordl1[2] | wordr1[2];
265     w1[3] = wordl1[3] | wordr1[3];
266     w2[0] = wordl2[0] | wordr2[0];
267     w2[1] = wordl2[1] | wordr2[1];
268     w2[2] = wordl2[2] | wordr2[2];
269     w2[3] = wordl2[3] | wordr2[3];
270     w3[0] = wordl3[0] | wordr3[0];
271     w3[1] = wordl3[1] | wordr3[1];
272     w3[2] = wordl3[2] | wordr3[2];
273     w3[3] = wordl3[3] | wordr3[3];
274
275     make_unicode (w1, w2, w3);
276     make_unicode (w0, w0, w1);
277
278     const u32x pw_len2 = pw_len * 2;
279
280     /**
281      * prepend salt
282      */
283
284     switch_buffer_by_offset_le (w0, w1, w2, w3, salt_len);
285
286     const u32x pw_salt_len = pw_len2 + salt_len;
287
288     w0[0] |= salt_buf0[0];
289     w0[1] |= salt_buf0[1];
290     w0[2] |= salt_buf0[2];
291     w0[3] |= salt_buf0[3];
292     w1[0] |= salt_buf1[0];
293     w1[1] |= salt_buf1[1];
294     w1[2] |= salt_buf1[2];
295     w1[3] |= salt_buf1[3];
296     w2[0] |= salt_buf2[0];
297     w2[1] |= salt_buf2[1];
298     w2[2] |= salt_buf2[2];
299     w2[3] |= salt_buf2[3];
300     w3[0] |= salt_buf3[0];
301     w3[1] |= salt_buf3[1];
302     w3[2] |= salt_buf3[2];
303     w3[3] |= salt_buf3[3];
304
305     /**
306      * sha512
307      */
308
309     u32x w0_t[4];
310     u32x w1_t[4];
311     u32x w2_t[4];
312     u32x w3_t[4];
313
314     w0_t[0] = swap32 (w0[0]);
315     w0_t[1] = swap32 (w0[1]);
316     w0_t[2] = swap32 (w0[2]);
317     w0_t[3] = swap32 (w0[3]);
318     w1_t[0] = swap32 (w1[0]);
319     w1_t[1] = swap32 (w1[1]);
320     w1_t[2] = swap32 (w1[2]);
321     w1_t[3] = swap32 (w1[3]);
322     w2_t[0] = swap32 (w2[0]);
323     w2_t[1] = swap32 (w2[1]);
324     w2_t[2] = swap32 (w2[2]);
325     w2_t[3] = swap32 (w2[3]);
326     w3_t[0] = swap32 (w3[0]);
327     w3_t[1] = swap32 (w3[1]);
328     w3_t[2] = 0;
329     w3_t[3] = pw_salt_len * 8;
330
331     u64x digest[8];
332
333     digest[0] = SHA512M_A;
334     digest[1] = SHA512M_B;
335     digest[2] = SHA512M_C;
336     digest[3] = SHA512M_D;
337     digest[4] = SHA512M_E;
338     digest[5] = SHA512M_F;
339     digest[6] = SHA512M_G;
340     digest[7] = SHA512M_H;
341
342     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
343
344     const u32x r0 = l32_from_64 (digest[7]);
345     const u32x r1 = h32_from_64 (digest[7]);
346     const u32x r2 = l32_from_64 (digest[3]);
347     const u32x r3 = h32_from_64 (digest[3]);
348
349     COMPARE_M_SIMD (r0, r1, r2, r3);
350   }
351 }
352
353 __kernel void m01740_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)
354 {
355 }
356
357 __kernel void m01740_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)
358 {
359 }
360
361 __kernel void m01740_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)
362 {
363   /**
364    * modifier
365    */
366
367   const u32 lid = get_local_id (0);
368
369   /**
370    * base
371    */
372
373   const u32 gid = get_global_id (0);
374
375   if (gid >= gid_max) return;
376
377   u32 pw_buf0[4];
378   u32 pw_buf1[4];
379
380   pw_buf0[0] = pws[gid].i[0];
381   pw_buf0[1] = pws[gid].i[1];
382   pw_buf0[2] = pws[gid].i[2];
383   pw_buf0[3] = pws[gid].i[3];
384   pw_buf1[0] = pws[gid].i[4];
385   pw_buf1[1] = pws[gid].i[5];
386   pw_buf1[2] = pws[gid].i[6];
387   pw_buf1[3] = pws[gid].i[7];
388
389   const u32 pw_l_len = pws[gid].pw_len;
390
391   /**
392    * salt
393    */
394
395   u32 salt_buf0[4];
396   u32 salt_buf1[4];
397   u32 salt_buf2[4];
398   u32 salt_buf3[4];
399
400   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
401   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
402   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
403   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
404   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
405   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
406   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
407   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
408   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
409   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
410   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
411   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
412   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
413   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
414   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
415   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
416
417   const u32 salt_len = salt_bufs[salt_pos].salt_len;
418
419   /**
420    * digest
421    */
422
423   const u32 search[4] =
424   {
425     digests_buf[digests_offset].digest_buf[DGST_R0],
426     digests_buf[digests_offset].digest_buf[DGST_R1],
427     digests_buf[digests_offset].digest_buf[DGST_R2],
428     digests_buf[digests_offset].digest_buf[DGST_R3]
429   };
430
431   /**
432    * loop
433    */
434
435   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
436   {
437     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
438
439     const u32x pw_len = pw_l_len + pw_r_len;
440
441     /**
442      * concat password candidate
443      */
444
445     u32x wordl0[4] = { 0 };
446     u32x wordl1[4] = { 0 };
447     u32x wordl2[4] = { 0 };
448     u32x wordl3[4] = { 0 };
449
450     wordl0[0] = pw_buf0[0];
451     wordl0[1] = pw_buf0[1];
452     wordl0[2] = pw_buf0[2];
453     wordl0[3] = pw_buf0[3];
454     wordl1[0] = pw_buf1[0];
455     wordl1[1] = pw_buf1[1];
456     wordl1[2] = pw_buf1[2];
457     wordl1[3] = pw_buf1[3];
458
459     u32x wordr0[4] = { 0 };
460     u32x wordr1[4] = { 0 };
461     u32x wordr2[4] = { 0 };
462     u32x wordr3[4] = { 0 };
463
464     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
465     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
466     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
467     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
468     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
469     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
470     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
471     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
472
473     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
474     {
475       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
476     }
477     else
478     {
479       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
480     }
481
482     u32x w0[4];
483     u32x w1[4];
484     u32x w2[4];
485     u32x w3[4];
486
487     w0[0] = wordl0[0] | wordr0[0];
488     w0[1] = wordl0[1] | wordr0[1];
489     w0[2] = wordl0[2] | wordr0[2];
490     w0[3] = wordl0[3] | wordr0[3];
491     w1[0] = wordl1[0] | wordr1[0];
492     w1[1] = wordl1[1] | wordr1[1];
493     w1[2] = wordl1[2] | wordr1[2];
494     w1[3] = wordl1[3] | wordr1[3];
495     w2[0] = wordl2[0] | wordr2[0];
496     w2[1] = wordl2[1] | wordr2[1];
497     w2[2] = wordl2[2] | wordr2[2];
498     w2[3] = wordl2[3] | wordr2[3];
499     w3[0] = wordl3[0] | wordr3[0];
500     w3[1] = wordl3[1] | wordr3[1];
501     w3[2] = wordl3[2] | wordr3[2];
502     w3[3] = wordl3[3] | wordr3[3];
503
504     make_unicode (w1, w2, w3);
505     make_unicode (w0, w0, w1);
506
507     const u32x pw_len2 = pw_len * 2;
508
509     /**
510      * prepend salt
511      */
512
513     switch_buffer_by_offset_le (w0, w1, w2, w3, salt_len);
514
515     const u32x pw_salt_len = pw_len2 + salt_len;
516
517     w0[0] |= salt_buf0[0];
518     w0[1] |= salt_buf0[1];
519     w0[2] |= salt_buf0[2];
520     w0[3] |= salt_buf0[3];
521     w1[0] |= salt_buf1[0];
522     w1[1] |= salt_buf1[1];
523     w1[2] |= salt_buf1[2];
524     w1[3] |= salt_buf1[3];
525     w2[0] |= salt_buf2[0];
526     w2[1] |= salt_buf2[1];
527     w2[2] |= salt_buf2[2];
528     w2[3] |= salt_buf2[3];
529     w3[0] |= salt_buf3[0];
530     w3[1] |= salt_buf3[1];
531     w3[2] |= salt_buf3[2];
532     w3[3] |= salt_buf3[3];
533
534     /**
535      * sha512
536      */
537
538     u32x w0_t[4];
539     u32x w1_t[4];
540     u32x w2_t[4];
541     u32x w3_t[4];
542
543     w0_t[0] = swap32 (w0[0]);
544     w0_t[1] = swap32 (w0[1]);
545     w0_t[2] = swap32 (w0[2]);
546     w0_t[3] = swap32 (w0[3]);
547     w1_t[0] = swap32 (w1[0]);
548     w1_t[1] = swap32 (w1[1]);
549     w1_t[2] = swap32 (w1[2]);
550     w1_t[3] = swap32 (w1[3]);
551     w2_t[0] = swap32 (w2[0]);
552     w2_t[1] = swap32 (w2[1]);
553     w2_t[2] = swap32 (w2[2]);
554     w2_t[3] = swap32 (w2[3]);
555     w3_t[0] = swap32 (w3[0]);
556     w3_t[1] = swap32 (w3[1]);
557     w3_t[2] = 0;
558     w3_t[3] = pw_salt_len * 8;
559
560     u64x digest[8];
561
562     digest[0] = SHA512M_A;
563     digest[1] = SHA512M_B;
564     digest[2] = SHA512M_C;
565     digest[3] = SHA512M_D;
566     digest[4] = SHA512M_E;
567     digest[5] = SHA512M_F;
568     digest[6] = SHA512M_G;
569     digest[7] = SHA512M_H;
570
571     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
572
573     const u32x r0 = l32_from_64 (digest[7]);
574     const u32x r1 = h32_from_64 (digest[7]);
575     const u32x r2 = l32_from_64 (digest[3]);
576     const u32x r3 = h32_from_64 (digest[3]);
577
578     COMPARE_S_SIMD (r0, r1, r2, r3);
579   }
580 }
581
582 __kernel void m01740_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)
583 {
584 }
585
586 __kernel void m01740_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)
587 {
588 }