6ea7861773816ad09e68a8675ebd1fa4f2450adf
[hashcat.git] / OpenCL / m01710_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 "inc_hash_constants.h"
11 #include "inc_vendor.cl"
12
13 #define DGST_R0 14
14 #define DGST_R1 15
15 #define DGST_R2 6
16 #define DGST_R3 7
17
18 #include "inc_hash_functions.cl"
19 #include "inc_types.cl"
20 #include "inc_common.cl"
21 #include "inc_simd.cl"
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   #ifdef _unroll
118   #pragma unroll
119   #endif
120   for (int i = 16; i < 80; i += 16)
121   {
122     ROUND_EXPAND (); ROUND_STEP (i);
123   }
124
125   /* rev
126   digest[0] += a;
127   digest[1] += b;
128   digest[2] += c;
129   digest[3] += d;
130   digest[4] += e;
131   digest[5] += f;
132   digest[6] += g;
133   digest[7] += h;
134   */
135
136   digest[0] = a;
137   digest[1] = b;
138   digest[2] = c;
139   digest[3] = d;
140   digest[4] = e;
141   digest[5] = f;
142   digest[6] = g;
143   digest[7] = h;
144 }
145
146 __kernel void m01710_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)
147 {
148   /**
149    * modifier
150    */
151
152   const u32 lid = get_local_id (0);
153
154   /**
155    * base
156    */
157
158   const u32 gid = get_global_id (0);
159
160   if (gid >= gid_max) return;
161
162   u32 pw_buf0[4];
163   u32 pw_buf1[4];
164
165   pw_buf0[0] = pws[gid].i[0];
166   pw_buf0[1] = pws[gid].i[1];
167   pw_buf0[2] = pws[gid].i[2];
168   pw_buf0[3] = pws[gid].i[3];
169   pw_buf1[0] = pws[gid].i[4];
170   pw_buf1[1] = pws[gid].i[5];
171   pw_buf1[2] = pws[gid].i[6];
172   pw_buf1[3] = pws[gid].i[7];
173
174   const u32 pw_l_len = pws[gid].pw_len;
175
176   /**
177    * salt
178    */
179
180   u32 salt_buf0[4];
181   u32 salt_buf1[4];
182   u32 salt_buf2[4];
183   u32 salt_buf3[4];
184
185   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
186   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
187   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
188   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
189   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
190   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
191   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
192   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
193   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
194   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
195   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
196   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
197   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
198   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
199   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
200   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
201
202   const u32 salt_len = salt_bufs[salt_pos].salt_len;
203
204   /**
205    * loop
206    */
207
208   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
209   {
210     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
211
212     const u32x pw_len = pw_l_len + pw_r_len;
213
214     /**
215      * concat password candidate
216      */
217
218     u32x wordl0[4] = { 0 };
219     u32x wordl1[4] = { 0 };
220     u32x wordl2[4] = { 0 };
221     u32x wordl3[4] = { 0 };
222
223     wordl0[0] = pw_buf0[0];
224     wordl0[1] = pw_buf0[1];
225     wordl0[2] = pw_buf0[2];
226     wordl0[3] = pw_buf0[3];
227     wordl1[0] = pw_buf1[0];
228     wordl1[1] = pw_buf1[1];
229     wordl1[2] = pw_buf1[2];
230     wordl1[3] = pw_buf1[3];
231
232     u32x wordr0[4] = { 0 };
233     u32x wordr1[4] = { 0 };
234     u32x wordr2[4] = { 0 };
235     u32x wordr3[4] = { 0 };
236
237     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
238     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
239     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
240     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
241     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
242     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
243     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
244     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
245
246     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
247     {
248       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
249     }
250     else
251     {
252       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
253     }
254
255     u32x w0[4];
256     u32x w1[4];
257     u32x w2[4];
258     u32x w3[4];
259
260     w0[0] = wordl0[0] | wordr0[0];
261     w0[1] = wordl0[1] | wordr0[1];
262     w0[2] = wordl0[2] | wordr0[2];
263     w0[3] = wordl0[3] | wordr0[3];
264     w1[0] = wordl1[0] | wordr1[0];
265     w1[1] = wordl1[1] | wordr1[1];
266     w1[2] = wordl1[2] | wordr1[2];
267     w1[3] = wordl1[3] | wordr1[3];
268     w2[0] = wordl2[0] | wordr2[0];
269     w2[1] = wordl2[1] | wordr2[1];
270     w2[2] = wordl2[2] | wordr2[2];
271     w2[3] = wordl2[3] | wordr2[3];
272     w3[0] = wordl3[0] | wordr3[0];
273     w3[1] = wordl3[1] | wordr3[1];
274     w3[2] = wordl3[2] | wordr3[2];
275     w3[3] = wordl3[3] | wordr3[3];
276
277     /**
278      * append salt
279      */
280
281     u32x s0[4];
282     u32x s1[4];
283     u32x s2[4];
284     u32x s3[4];
285
286     s0[0] = salt_buf0[0];
287     s0[1] = salt_buf0[1];
288     s0[2] = salt_buf0[2];
289     s0[3] = salt_buf0[3];
290     s1[0] = salt_buf1[0];
291     s1[1] = salt_buf1[1];
292     s1[2] = salt_buf1[2];
293     s1[3] = salt_buf1[3];
294     s2[0] = salt_buf2[0];
295     s2[1] = salt_buf2[1];
296     s2[2] = salt_buf2[2];
297     s2[3] = salt_buf2[3];
298     s3[0] = salt_buf3[0];
299     s3[1] = salt_buf3[1];
300     s3[2] = salt_buf3[2];
301     s3[3] = salt_buf3[3];
302
303     switch_buffer_by_offset_le_VV (s0, s1, s2, s3, pw_len);
304
305     const u32x pw_salt_len = pw_len + salt_len;
306
307     w0[0] |= s0[0];
308     w0[1] |= s0[1];
309     w0[2] |= s0[2];
310     w0[3] |= s0[3];
311     w1[0] |= s1[0];
312     w1[1] |= s1[1];
313     w1[2] |= s1[2];
314     w1[3] |= s1[3];
315     w2[0] |= s2[0];
316     w2[1] |= s2[1];
317     w2[2] |= s2[2];
318     w2[3] |= s2[3];
319     w3[0] |= s3[0];
320     w3[1] |= s3[1];
321     w3[2] |= s3[2];
322     w3[3] |= s3[3];
323
324     /**
325      * sha512
326      */
327
328     u32x w0_t[4];
329     u32x w1_t[4];
330     u32x w2_t[4];
331     u32x w3_t[4];
332
333     w0_t[0] = swap32 (w0[0]);
334     w0_t[1] = swap32 (w0[1]);
335     w0_t[2] = swap32 (w0[2]);
336     w0_t[3] = swap32 (w0[3]);
337     w1_t[0] = swap32 (w1[0]);
338     w1_t[1] = swap32 (w1[1]);
339     w1_t[2] = swap32 (w1[2]);
340     w1_t[3] = swap32 (w1[3]);
341     w2_t[0] = swap32 (w2[0]);
342     w2_t[1] = swap32 (w2[1]);
343     w2_t[2] = swap32 (w2[2]);
344     w2_t[3] = swap32 (w2[3]);
345     w3_t[0] = swap32 (w3[0]);
346     w3_t[1] = swap32 (w3[1]);
347     w3_t[2] = 0;
348     w3_t[3] = pw_salt_len * 8;
349
350     u64x digest[8];
351
352     digest[0] = SHA512M_A;
353     digest[1] = SHA512M_B;
354     digest[2] = SHA512M_C;
355     digest[3] = SHA512M_D;
356     digest[4] = SHA512M_E;
357     digest[5] = SHA512M_F;
358     digest[6] = SHA512M_G;
359     digest[7] = SHA512M_H;
360
361     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
362
363     const u32x r0 = l32_from_64 (digest[7]);
364     const u32x r1 = h32_from_64 (digest[7]);
365     const u32x r2 = l32_from_64 (digest[3]);
366     const u32x r3 = h32_from_64 (digest[3]);
367
368     COMPARE_M_SIMD (r0, r1, r2, r3);
369   }
370 }
371
372 __kernel void m01710_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)
373 {
374 }
375
376 __kernel void m01710_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)
377 {
378 }
379
380 __kernel void m01710_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)
381 {
382   /**
383    * modifier
384    */
385
386   const u32 lid = get_local_id (0);
387
388   /**
389    * base
390    */
391
392   const u32 gid = get_global_id (0);
393
394   if (gid >= gid_max) return;
395
396   u32 pw_buf0[4];
397   u32 pw_buf1[4];
398
399   pw_buf0[0] = pws[gid].i[0];
400   pw_buf0[1] = pws[gid].i[1];
401   pw_buf0[2] = pws[gid].i[2];
402   pw_buf0[3] = pws[gid].i[3];
403   pw_buf1[0] = pws[gid].i[4];
404   pw_buf1[1] = pws[gid].i[5];
405   pw_buf1[2] = pws[gid].i[6];
406   pw_buf1[3] = pws[gid].i[7];
407
408   const u32 pw_l_len = pws[gid].pw_len;
409
410   /**
411    * salt
412    */
413
414   u32 salt_buf0[4];
415   u32 salt_buf1[4];
416   u32 salt_buf2[4];
417   u32 salt_buf3[4];
418
419   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
420   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
421   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
422   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
423   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
424   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
425   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
426   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
427   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
428   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
429   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
430   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
431   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
432   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
433   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
434   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
435
436   const u32 salt_len = salt_bufs[salt_pos].salt_len;
437
438   /**
439    * digest
440    */
441
442   const u32 search[4] =
443   {
444     digests_buf[digests_offset].digest_buf[DGST_R0],
445     digests_buf[digests_offset].digest_buf[DGST_R1],
446     digests_buf[digests_offset].digest_buf[DGST_R2],
447     digests_buf[digests_offset].digest_buf[DGST_R3]
448   };
449
450   /**
451    * loop
452    */
453
454   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
455   {
456     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
457
458     const u32x pw_len = pw_l_len + pw_r_len;
459
460     /**
461      * concat password candidate
462      */
463
464     u32x wordl0[4] = { 0 };
465     u32x wordl1[4] = { 0 };
466     u32x wordl2[4] = { 0 };
467     u32x wordl3[4] = { 0 };
468
469     wordl0[0] = pw_buf0[0];
470     wordl0[1] = pw_buf0[1];
471     wordl0[2] = pw_buf0[2];
472     wordl0[3] = pw_buf0[3];
473     wordl1[0] = pw_buf1[0];
474     wordl1[1] = pw_buf1[1];
475     wordl1[2] = pw_buf1[2];
476     wordl1[3] = pw_buf1[3];
477
478     u32x wordr0[4] = { 0 };
479     u32x wordr1[4] = { 0 };
480     u32x wordr2[4] = { 0 };
481     u32x wordr3[4] = { 0 };
482
483     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
484     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
485     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
486     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
487     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
488     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
489     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
490     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
491
492     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
493     {
494       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
495     }
496     else
497     {
498       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
499     }
500
501     u32x w0[4];
502     u32x w1[4];
503     u32x w2[4];
504     u32x w3[4];
505
506     w0[0] = wordl0[0] | wordr0[0];
507     w0[1] = wordl0[1] | wordr0[1];
508     w0[2] = wordl0[2] | wordr0[2];
509     w0[3] = wordl0[3] | wordr0[3];
510     w1[0] = wordl1[0] | wordr1[0];
511     w1[1] = wordl1[1] | wordr1[1];
512     w1[2] = wordl1[2] | wordr1[2];
513     w1[3] = wordl1[3] | wordr1[3];
514     w2[0] = wordl2[0] | wordr2[0];
515     w2[1] = wordl2[1] | wordr2[1];
516     w2[2] = wordl2[2] | wordr2[2];
517     w2[3] = wordl2[3] | wordr2[3];
518     w3[0] = wordl3[0] | wordr3[0];
519     w3[1] = wordl3[1] | wordr3[1];
520     w3[2] = wordl3[2] | wordr3[2];
521     w3[3] = wordl3[3] | wordr3[3];
522
523     /**
524      * append salt
525      */
526
527     u32x s0[4];
528     u32x s1[4];
529     u32x s2[4];
530     u32x s3[4];
531
532     s0[0] = salt_buf0[0];
533     s0[1] = salt_buf0[1];
534     s0[2] = salt_buf0[2];
535     s0[3] = salt_buf0[3];
536     s1[0] = salt_buf1[0];
537     s1[1] = salt_buf1[1];
538     s1[2] = salt_buf1[2];
539     s1[3] = salt_buf1[3];
540     s2[0] = salt_buf2[0];
541     s2[1] = salt_buf2[1];
542     s2[2] = salt_buf2[2];
543     s2[3] = salt_buf2[3];
544     s3[0] = salt_buf3[0];
545     s3[1] = salt_buf3[1];
546     s3[2] = salt_buf3[2];
547     s3[3] = salt_buf3[3];
548
549     switch_buffer_by_offset_le_VV (s0, s1, s2, s3, pw_len);
550
551     const u32x pw_salt_len = pw_len + salt_len;
552
553     w0[0] |= s0[0];
554     w0[1] |= s0[1];
555     w0[2] |= s0[2];
556     w0[3] |= s0[3];
557     w1[0] |= s1[0];
558     w1[1] |= s1[1];
559     w1[2] |= s1[2];
560     w1[3] |= s1[3];
561     w2[0] |= s2[0];
562     w2[1] |= s2[1];
563     w2[2] |= s2[2];
564     w2[3] |= s2[3];
565     w3[0] |= s3[0];
566     w3[1] |= s3[1];
567     w3[2] |= s3[2];
568     w3[3] |= s3[3];
569
570     /**
571      * sha512
572      */
573
574     u32x w0_t[4];
575     u32x w1_t[4];
576     u32x w2_t[4];
577     u32x w3_t[4];
578
579     w0_t[0] = swap32 (w0[0]);
580     w0_t[1] = swap32 (w0[1]);
581     w0_t[2] = swap32 (w0[2]);
582     w0_t[3] = swap32 (w0[3]);
583     w1_t[0] = swap32 (w1[0]);
584     w1_t[1] = swap32 (w1[1]);
585     w1_t[2] = swap32 (w1[2]);
586     w1_t[3] = swap32 (w1[3]);
587     w2_t[0] = swap32 (w2[0]);
588     w2_t[1] = swap32 (w2[1]);
589     w2_t[2] = swap32 (w2[2]);
590     w2_t[3] = swap32 (w2[3]);
591     w3_t[0] = swap32 (w3[0]);
592     w3_t[1] = swap32 (w3[1]);
593     w3_t[2] = 0;
594     w3_t[3] = pw_salt_len * 8;
595
596     u64x digest[8];
597
598     digest[0] = SHA512M_A;
599     digest[1] = SHA512M_B;
600     digest[2] = SHA512M_C;
601     digest[3] = SHA512M_D;
602     digest[4] = SHA512M_E;
603     digest[5] = SHA512M_F;
604     digest[6] = SHA512M_G;
605     digest[7] = SHA512M_H;
606
607     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
608
609     const u32x r0 = l32_from_64 (digest[7]);
610     const u32x r1 = h32_from_64 (digest[7]);
611     const u32x r2 = l32_from_64 (digest[3]);
612     const u32x r3 = h32_from_64 (digest[3]);
613
614     COMPARE_S_SIMD (r0, r1, r2, r3);
615   }
616 }
617
618 __kernel void m01710_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)
619 {
620 }
621
622 __kernel void m01710_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)
623 {
624 }