Zero pws_buf before reuse
[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 "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 static void sha512_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u64 digest[8])
48 {
49   u64 w0_t = hl32_to_64 (w0[0], w0[1]);
50   u64 w1_t = hl32_to_64 (w0[2], w0[3]);
51   u64 w2_t = hl32_to_64 (w1[0], w1[1]);
52   u64 w3_t = hl32_to_64 (w1[2], w1[3]);
53   u64 w4_t = hl32_to_64 (w2[0], w2[1]);
54   u64 w5_t = hl32_to_64 (w2[2], w2[3]);
55   u64 w6_t = hl32_to_64 (w3[0], w3[1]);
56   u64 w7_t = 0;
57   u64 w8_t = 0;
58   u64 w9_t = 0;
59   u64 wa_t = 0;
60   u64 wb_t = 0;
61   u64 wc_t = 0;
62   u64 wd_t = 0;
63   u64 we_t = 0;
64   u64 wf_t = hl32_to_64 (w3[2], w3[3]);
65
66   u64 a = digest[0];
67   u64 b = digest[1];
68   u64 c = digest[2];
69   u64 d = digest[3];
70   u64 e = digest[4];
71   u64 f = digest[5];
72   u64 g = digest[6];
73   u64 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 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 combs_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 pws0[4] = { 0 };
161   u32 pws1[4] = { 0 };
162
163   pws0[0] = pws[gid].i[0];
164   pws0[1] = pws[gid].i[1];
165   pws0[2] = pws[gid].i[2];
166   pws0[3] = pws[gid].i[3];
167   pws1[0] = pws[gid].i[4];
168   pws1[1] = pws[gid].i[5];
169   pws1[2] = pws[gid].i[6];
170   pws1[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
181   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
182   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[1];
183   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[2];
184   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[3];
185   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[4];
186   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[5];
187   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[6];
188   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[7];
189
190   const u32 salt_len = salt_bufs[salt_pos].salt_len;
191
192   /**
193    * loop
194    */
195
196   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos += VECT_SIZE)
197   {
198     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
199
200     const u32x pw_len = pw_l_len + pw_r_len;
201
202     u32x wordr0[4] = { 0 };
203     u32x wordr1[4] = { 0 };
204     u32x wordr2[4] = { 0 };
205     u32x wordr3[4] = { 0 };
206
207     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
208     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
209     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
210     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
211     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
212     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
213     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
214     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
215
216     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
217     {
218       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
219     }
220
221     /**
222      * append salt
223      */
224
225     u32 s0[4];
226
227     s0[0] = salt_buf0[0];
228     s0[1] = salt_buf0[1];
229     s0[2] = salt_buf0[2];
230     s0[3] = salt_buf0[3];
231
232     u32 s1[4];
233
234     s1[0] = salt_buf1[0];
235     s1[1] = salt_buf1[1];
236     s1[2] = salt_buf1[2];
237     s1[3] = salt_buf1[3];
238
239     u32 s2[4];
240
241     s2[0] = 0;
242     s2[1] = 0;
243     s2[2] = 0;
244     s2[3] = 0;
245
246     u32 s3[4];
247
248     s3[0] = 0;
249     s3[1] = 0;
250     s3[2] = 0;
251     s3[3] = 0;
252
253     switch_buffer_by_offset_le_S (s0, s1, s2, s3, pw_len);
254
255     const u32x pw_salt_len = pw_len + salt_len;
256
257     u32x w0[4];
258     u32x w1[4];
259     u32x w2[4];
260     u32x w3[4];
261
262     w0[0] = wordl0[0] | wordr0[0] | s0[0];
263     w0[1] = wordl0[1] | wordr0[1] | s0[1];
264     w0[2] = wordl0[2] | wordr0[2] | s0[2];
265     w0[3] = wordl0[3] | wordr0[3] | s0[3];
266     w1[0] = wordl1[0] | wordr1[0] | s1[0];
267     w1[1] = wordl1[1] | wordr1[1] | s1[1];
268     w1[2] = wordl1[2] | wordr1[2] | s1[2];
269     w1[3] = wordl1[3] | wordr1[3] | s1[3];
270     w2[0] = wordl2[0] | wordr2[0] | s2[0];
271     w2[1] = wordl2[1] | wordr2[1] | s2[1];
272     w2[2] = wordl2[2] | wordr2[2] | s2[2];
273     w2[3] = wordl2[3] | wordr2[3] | s2[3];
274     w3[0] = wordl3[0] | wordr3[0] | s3[0];
275     w3[1] = wordl3[1] | wordr3[1] | s3[1];
276     w3[2] = wordl3[2] | wordr3[2] | s3[2];
277     w3[3] = wordl3[3] | wordr3[3] | s3[3];
278
279     append_0x80_4x4 (w0, w1, w2, w3, pw_salt_len);
280
281     /**
282      * sha512
283      */
284
285     u32x w0_t[4];
286     u32x w1_t[4];
287     u32x w2_t[4];
288     u32x w3_t[4];
289
290     w0_t[0] = swap32 (w0[0]);
291     w0_t[1] = swap32 (w0[1]);
292     w0_t[2] = swap32 (w0[2]);
293     w0_t[3] = swap32 (w0[3]);
294     w1_t[0] = swap32 (w1[0]);
295     w1_t[1] = swap32 (w1[1]);
296     w1_t[2] = swap32 (w1[2]);
297     w1_t[3] = swap32 (w1[3]);
298     w2_t[0] = swap32 (w2[0]);
299     w2_t[1] = swap32 (w2[1]);
300     w2_t[2] = swap32 (w2[2]);
301     w2_t[3] = swap32 (w2[3]);
302     w3_t[0] = swap32 (w3[0]);
303     w3_t[1] = swap32 (w3[1]);
304     w3_t[2] = 0;
305     w3_t[3] = pw_salt_len * 8;
306
307     u64 digest[8];
308
309     digest[0] = SHA512M_A;
310     digest[1] = SHA512M_B;
311     digest[2] = SHA512M_C;
312     digest[3] = SHA512M_D;
313     digest[4] = SHA512M_E;
314     digest[5] = SHA512M_F;
315     digest[6] = SHA512M_G;
316     digest[7] = SHA512M_H;
317
318     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
319
320
321     const u32 r0 = l32_from_64 (digest[7]);
322     const u32 r1 = h32_from_64 (digest[7]);
323     const u32 r2 = l32_from_64 (digest[3]);
324     const u32 r3 = h32_from_64 (digest[3]);
325
326     #include COMPARE_M
327   }
328 }
329
330 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
331 {
332 }
333
334 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
335 {
336 }
337
338 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
339 {
340   /**
341    * modifier
342    */
343
344   const u32 lid = get_local_id (0);
345
346   /**
347    * base
348    */
349
350   const u32 gid = get_global_id (0);
351
352   if (gid >= gid_max) return;
353
354   u32 pws0[4] = { 0 };
355   u32 pws1[4] = { 0 };
356
357   pws0[0] = pws[gid].i[0];
358   pws0[1] = pws[gid].i[1];
359   pws0[2] = pws[gid].i[2];
360   pws0[3] = pws[gid].i[3];
361   pws1[0] = pws[gid].i[4];
362   pws1[1] = pws[gid].i[5];
363   pws1[2] = pws[gid].i[6];
364   pws1[3] = pws[gid].i[7];
365
366   const u32 pw_l_len = pws[gid].pw_len;
367
368   /**
369    * salt
370    */
371
372   u32 salt_buf0[4];
373   u32 salt_buf1[4];
374
375   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
376   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[1];
377   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[2];
378   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[3];
379   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[4];
380   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[5];
381   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[6];
382   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[7];
383
384   const u32 salt_len = salt_bufs[salt_pos].salt_len;
385
386   /**
387    * digest
388    */
389
390   const u32 search[4] =
391   {
392     digests_buf[digests_offset].digest_buf[DGST_R0],
393     digests_buf[digests_offset].digest_buf[DGST_R1],
394     digests_buf[digests_offset].digest_buf[DGST_R2],
395     digests_buf[digests_offset].digest_buf[DGST_R3]
396   };
397
398   /**
399    * loop
400    */
401
402   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos += VECT_SIZE)
403   {
404     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
405
406     const u32x pw_len = pw_l_len + pw_r_len;
407
408     u32x wordr0[4] = { 0 };
409     u32x wordr1[4] = { 0 };
410     u32x wordr2[4] = { 0 };
411     u32x wordr3[4] = { 0 };
412
413     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
414     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
415     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
416     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
417     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
418     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
419     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
420     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
421
422     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
423     {
424       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
425     }
426
427     /**
428      * append salt
429      */
430
431     u32 s0[4];
432
433     s0[0] = salt_buf0[0];
434     s0[1] = salt_buf0[1];
435     s0[2] = salt_buf0[2];
436     s0[3] = salt_buf0[3];
437
438     u32 s1[4];
439
440     s1[0] = salt_buf1[0];
441     s1[1] = salt_buf1[1];
442     s1[2] = salt_buf1[2];
443     s1[3] = salt_buf1[3];
444
445     u32 s2[4];
446
447     s2[0] = 0;
448     s2[1] = 0;
449     s2[2] = 0;
450     s2[3] = 0;
451
452     u32 s3[4];
453
454     s3[0] = 0;
455     s3[1] = 0;
456     s3[2] = 0;
457     s3[3] = 0;
458
459     switch_buffer_by_offset_le_S (s0, s1, s2, s3, pw_len);
460
461     const u32x pw_salt_len = pw_len + salt_len;
462
463     u32x w0[4];
464     u32x w1[4];
465     u32x w2[4];
466     u32x w3[4];
467
468     w0[0] = wordl0[0] | wordr0[0] | s0[0];
469     w0[1] = wordl0[1] | wordr0[1] | s0[1];
470     w0[2] = wordl0[2] | wordr0[2] | s0[2];
471     w0[3] = wordl0[3] | wordr0[3] | s0[3];
472     w1[0] = wordl1[0] | wordr1[0] | s1[0];
473     w1[1] = wordl1[1] | wordr1[1] | s1[1];
474     w1[2] = wordl1[2] | wordr1[2] | s1[2];
475     w1[3] = wordl1[3] | wordr1[3] | s1[3];
476     w2[0] = wordl2[0] | wordr2[0] | s2[0];
477     w2[1] = wordl2[1] | wordr2[1] | s2[1];
478     w2[2] = wordl2[2] | wordr2[2] | s2[2];
479     w2[3] = wordl2[3] | wordr2[3] | s2[3];
480     w3[0] = wordl3[0] | wordr3[0] | s3[0];
481     w3[1] = wordl3[1] | wordr3[1] | s3[1];
482     w3[2] = wordl3[2] | wordr3[2] | s3[2];
483     w3[3] = wordl3[3] | wordr3[3] | s3[3];
484
485     append_0x80_4x4 (w0, w1, w2, w3, pw_salt_len);
486
487     /**
488      * sha512
489      */
490
491     u32x w0_t[4];
492     u32x w1_t[4];
493     u32x w2_t[4];
494     u32x w3_t[4];
495
496     w0_t[0] = swap32 (w0[0]);
497     w0_t[1] = swap32 (w0[1]);
498     w0_t[2] = swap32 (w0[2]);
499     w0_t[3] = swap32 (w0[3]);
500     w1_t[0] = swap32 (w1[0]);
501     w1_t[1] = swap32 (w1[1]);
502     w1_t[2] = swap32 (w1[2]);
503     w1_t[3] = swap32 (w1[3]);
504     w2_t[0] = swap32 (w2[0]);
505     w2_t[1] = swap32 (w2[1]);
506     w2_t[2] = swap32 (w2[2]);
507     w2_t[3] = swap32 (w2[3]);
508     w3_t[0] = swap32 (w3[0]);
509     w3_t[1] = swap32 (w3[1]);
510     w3_t[2] = 0;
511     w3_t[3] = pw_salt_len * 8;
512
513     u64 digest[8];
514
515     digest[0] = SHA512M_A;
516     digest[1] = SHA512M_B;
517     digest[2] = SHA512M_C;
518     digest[3] = SHA512M_D;
519     digest[4] = SHA512M_E;
520     digest[5] = SHA512M_F;
521     digest[6] = SHA512M_G;
522     digest[7] = SHA512M_H;
523
524     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
525
526
527     const u32 r0 = l32_from_64 (digest[7]);
528     const u32 r1 = h32_from_64 (digest[7]);
529     const u32 r2 = l32_from_64 (digest[3]);
530     const u32 r3 = h32_from_64 (digest[3]);
531
532     #include COMPARE_S
533   }
534 }
535
536 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
537 {
538 }
539
540 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
541 {
542 }