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