Initial commit
[hashcat.git] / nv / m01760_a3.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__ bf_t c_bfs[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 u64x w0[4], const u64x w1[4], const u64x w2[4], const u64x w3[4], u64x digest[8])
70 {
71   u64x w0_t = w0[0];
72   u64x w1_t = w0[1];
73   u64x w2_t = w0[2];
74   u64x w3_t = w0[3];
75   u64x w4_t = w1[0];
76   u64x w5_t = w1[1];
77   u64x w6_t = w1[2];
78   u64x w7_t = w1[3];
79   u64x w8_t = w2[0];
80   u64x w9_t = w2[1];
81   u64x wa_t = w2[2];
82   u64x wb_t = w2[3];
83   u64x wc_t = w3[0];
84   u64x wd_t = w3[1];
85   u64x we_t = w3[2];
86   u64x wf_t = 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   digest[0] += a;
145   digest[1] += b;
146   digest[2] += c;
147   digest[3] += d;
148   digest[4] += e;
149   digest[5] += f;
150   digest[6] += g;
151   digest[7] += h;
152 }
153
154 __device__ static void hmac_sha512_pad (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], u64x ipad[8], u64x opad[8])
155 {
156   u64x w0_t[4];
157   u64x w1_t[4];
158   u64x w2_t[4];
159   u64x w3_t[4];
160
161   w0_t[0] = hl32_to_64 (w0[0], w0[1]) ^ 0x3636363636363636;
162   w0_t[1] = hl32_to_64 (w0[2], w0[3]) ^ 0x3636363636363636;
163   w0_t[2] = hl32_to_64 (w1[0], w1[1]) ^ 0x3636363636363636;
164   w0_t[3] = hl32_to_64 (w1[2], w1[3]) ^ 0x3636363636363636;
165   w1_t[0] = hl32_to_64 (w2[0], w2[1]) ^ 0x3636363636363636;
166   w1_t[1] = hl32_to_64 (w2[2], w2[3]) ^ 0x3636363636363636;
167   w1_t[2] = hl32_to_64 (w3[0], w3[1]) ^ 0x3636363636363636;
168   w1_t[3] = hl32_to_64 (w3[2], w3[3]) ^ 0x3636363636363636;
169   w2_t[0] =                                 0 ^ 0x3636363636363636;
170   w2_t[1] =                                 0 ^ 0x3636363636363636;
171   w2_t[2] =                                 0 ^ 0x3636363636363636;
172   w2_t[3] =                                 0 ^ 0x3636363636363636;
173   w3_t[0] =                                 0 ^ 0x3636363636363636;
174   w3_t[1] =                                 0 ^ 0x3636363636363636;
175   w3_t[2] =                                 0 ^ 0x3636363636363636;
176   w3_t[3] =                                 0 ^ 0x3636363636363636;
177
178   ipad[0] = SHA512M_A;
179   ipad[1] = SHA512M_B;
180   ipad[2] = SHA512M_C;
181   ipad[3] = SHA512M_D;
182   ipad[4] = SHA512M_E;
183   ipad[5] = SHA512M_F;
184   ipad[6] = SHA512M_G;
185   ipad[7] = SHA512M_H;
186
187   sha512_transform (w0_t, w1_t, w2_t, w3_t, ipad);
188
189   w0_t[0] = hl32_to_64 (w0[0], w0[1]) ^ 0x5c5c5c5c5c5c5c5c;
190   w0_t[1] = hl32_to_64 (w0[2], w0[3]) ^ 0x5c5c5c5c5c5c5c5c;
191   w0_t[2] = hl32_to_64 (w1[0], w1[1]) ^ 0x5c5c5c5c5c5c5c5c;
192   w0_t[3] = hl32_to_64 (w1[2], w1[3]) ^ 0x5c5c5c5c5c5c5c5c;
193   w1_t[0] = hl32_to_64 (w2[0], w2[1]) ^ 0x5c5c5c5c5c5c5c5c;
194   w1_t[1] = hl32_to_64 (w2[2], w2[3]) ^ 0x5c5c5c5c5c5c5c5c;
195   w1_t[2] = hl32_to_64 (w3[0], w3[1]) ^ 0x5c5c5c5c5c5c5c5c;
196   w1_t[3] = hl32_to_64 (w3[2], w3[3]) ^ 0x5c5c5c5c5c5c5c5c;
197   w2_t[0] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
198   w2_t[1] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
199   w2_t[2] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
200   w2_t[3] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
201   w3_t[0] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
202   w3_t[1] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
203   w3_t[2] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
204   w3_t[3] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
205
206   opad[0] = SHA512M_A;
207   opad[1] = SHA512M_B;
208   opad[2] = SHA512M_C;
209   opad[3] = SHA512M_D;
210   opad[4] = SHA512M_E;
211   opad[5] = SHA512M_F;
212   opad[6] = SHA512M_G;
213   opad[7] = SHA512M_H;
214
215   sha512_transform (w0_t, w1_t, w2_t, w3_t, opad);
216 }
217
218 __device__ static void hmac_sha512_run (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], u64x ipad[8], u64x opad[8], u64x digest[8])
219 {
220   u64x w0_t[4];
221   u64x w1_t[4];
222   u64x w2_t[4];
223   u64x w3_t[4];
224
225   w0_t[0] = hl32_to_64 (w0[0], w0[1]);
226   w0_t[1] = hl32_to_64 (w0[2], w0[3]);
227   w0_t[2] = hl32_to_64 (w1[0], w1[1]);
228   w0_t[3] = hl32_to_64 (w1[2], w1[3]);
229   w1_t[0] = hl32_to_64 (w2[0], w2[1]);
230   w1_t[1] = hl32_to_64 (w2[2], w2[3]);
231   w1_t[2] = hl32_to_64 (w3[0], w3[1]);
232   w1_t[3] = 0;
233   w2_t[0] = 0;
234   w2_t[1] = 0;
235   w2_t[2] = 0;
236   w2_t[3] = 0;
237   w3_t[0] = 0;
238   w3_t[1] = 0;
239   w3_t[2] = 0;
240   w3_t[3] = hl32_to_64 (w3[2], w3[3]);
241
242   digest[0] = ipad[0];
243   digest[1] = ipad[1];
244   digest[2] = ipad[2];
245   digest[3] = ipad[3];
246   digest[4] = ipad[4];
247   digest[5] = ipad[5];
248   digest[6] = ipad[6];
249   digest[7] = ipad[7];
250
251   sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
252
253   w0_t[0] = digest[0];
254   w0_t[1] = digest[1];
255   w0_t[2] = digest[2];
256   w0_t[3] = digest[3];
257   w1_t[0] = digest[4];
258   w1_t[1] = digest[5];
259   w1_t[2] = digest[6];
260   w1_t[3] = digest[7];
261   w2_t[0] = 0x8000000000000000;
262   w2_t[1] = 0;
263   w2_t[2] = 0;
264   w2_t[3] = 0;
265   w3_t[0] = 0;
266   w3_t[1] = 0;
267   w3_t[2] = 0;
268   w3_t[3] = (128 + 64) * 8;
269
270   digest[0] = opad[0];
271   digest[1] = opad[1];
272   digest[2] = opad[2];
273   digest[3] = opad[3];
274   digest[4] = opad[4];
275   digest[5] = opad[5];
276   digest[6] = opad[6];
277   digest[7] = opad[7];
278
279   sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
280 }
281
282 __device__ static void m01760m (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], const u32 pw_len, 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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
283 {
284   /**
285    * modifier
286    */
287
288   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
289   const u32 lid = threadIdx.x;
290
291   /**
292    * salt
293    */
294
295   u32 salt_buf0[4];
296
297   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
298   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
299   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
300   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
301
302   u32 salt_buf1[4];
303
304   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
305   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
306   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
307   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
308
309   /**
310    * pads
311    */
312
313   u32x w0_t[4];
314
315   w0_t[0] = swap_workaround (salt_buf0[0]);
316   w0_t[1] = swap_workaround (salt_buf0[1]);
317   w0_t[2] = swap_workaround (salt_buf0[2]);
318   w0_t[3] = swap_workaround (salt_buf0[3]);
319
320   u32x w1_t[4];
321
322   w1_t[0] = swap_workaround (salt_buf1[0]);
323   w1_t[1] = swap_workaround (salt_buf1[1]);
324   w1_t[2] = swap_workaround (salt_buf1[2]);
325   w1_t[3] = swap_workaround (salt_buf1[3]);
326
327   u32x w2_t[4];
328
329   w2_t[0] = 0;
330   w2_t[1] = 0;
331   w2_t[2] = 0;
332   w2_t[3] = 0;
333
334   u32x w3_t[4];
335
336   w3_t[0] = 0;
337   w3_t[1] = 0;
338   w3_t[2] = 0;
339   w3_t[3] = 0;
340
341   u64x ipad[8];
342   u64x opad[8];
343
344   hmac_sha512_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
345
346   /**
347    * loop
348    */
349
350   u32x w0l = w0[0];
351
352   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
353   {
354     const u32 w0r = c_bfs[il_pos].i;
355
356     w0[0] = w0l | w0r;
357
358     w0_t[0] = w0[0];
359     w0_t[1] = w0[1];
360     w0_t[2] = w0[2];
361     w0_t[3] = w0[3];
362     w1_t[0] = w1[0];
363     w1_t[1] = w1[1];
364     w1_t[2] = w1[2];
365     w1_t[3] = w1[3];
366     w2_t[0] = w2[0];
367     w2_t[1] = w2[1];
368     w2_t[2] = w2[2];
369     w2_t[3] = w2[3];
370     w3_t[0] = w3[0];
371     w3_t[1] = w3[1];
372     w3_t[2] = 0;
373     w3_t[3] = (128 + pw_len) * 8;
374
375     u64x digest[8];
376
377     hmac_sha512_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
378
379
380     const u32x r0 = l32_from_64 (digest[7]);
381     const u32x r1 = h32_from_64 (digest[7]);
382     const u32x r2 = l32_from_64 (digest[3]);
383     const u32x r3 = h32_from_64 (digest[3]);
384
385     #include VECT_COMPARE_M
386   }
387 }
388
389 __device__ static void m01760s (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], const u32 pw_len, 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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
390 {
391   /**
392    * modifier
393    */
394
395   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
396   const u32 lid = threadIdx.x;
397
398   /**
399    * salt
400    */
401
402   u32 salt_buf0[4];
403
404   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
405   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
406   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
407   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
408
409   u32 salt_buf1[4];
410
411   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
412   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
413   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
414   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
415
416   /**
417    * pads
418    */
419
420   u32x w0_t[4];
421
422   w0_t[0] = swap_workaround (salt_buf0[0]);
423   w0_t[1] = swap_workaround (salt_buf0[1]);
424   w0_t[2] = swap_workaround (salt_buf0[2]);
425   w0_t[3] = swap_workaround (salt_buf0[3]);
426
427   u32x w1_t[4];
428
429   w1_t[0] = swap_workaround (salt_buf1[0]);
430   w1_t[1] = swap_workaround (salt_buf1[1]);
431   w1_t[2] = swap_workaround (salt_buf1[2]);
432   w1_t[3] = swap_workaround (salt_buf1[3]);
433
434   u32x w2_t[4];
435
436   w2_t[0] = 0;
437   w2_t[1] = 0;
438   w2_t[2] = 0;
439   w2_t[3] = 0;
440
441   u32x w3_t[4];
442
443   w3_t[0] = 0;
444   w3_t[1] = 0;
445   w3_t[2] = 0;
446   w3_t[3] = 0;
447
448   u64x ipad[8];
449   u64x opad[8];
450
451   hmac_sha512_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
452
453   /**
454    * digest
455    */
456
457   const u32 search[4] =
458   {
459     digests_buf[digests_offset].digest_buf[DGST_R0],
460     digests_buf[digests_offset].digest_buf[DGST_R1],
461     digests_buf[digests_offset].digest_buf[DGST_R2],
462     digests_buf[digests_offset].digest_buf[DGST_R3]
463   };
464
465   /**
466    * loop
467    */
468
469   u32x w0l = w0[0];
470
471   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
472   {
473     const u32 w0r = c_bfs[il_pos].i;
474
475     w0[0] = w0l | w0r;
476
477     w0_t[0] = w0[0];
478     w0_t[1] = w0[1];
479     w0_t[2] = w0[2];
480     w0_t[3] = w0[3];
481     w1_t[0] = w1[0];
482     w1_t[1] = w1[1];
483     w1_t[2] = w1[2];
484     w1_t[3] = w1[3];
485     w2_t[0] = w2[0];
486     w2_t[1] = w2[1];
487     w2_t[2] = w2[2];
488     w2_t[3] = w2[3];
489     w3_t[0] = w3[0];
490     w3_t[1] = w3[1];
491     w3_t[2] = 0;
492     w3_t[3] = (128 + pw_len) * 8;
493
494     u64x digest[8];
495
496     hmac_sha512_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
497
498
499     const u32x r0 = l32_from_64 (digest[7]);
500     const u32x r1 = h32_from_64 (digest[7]);
501     const u32x r2 = l32_from_64 (digest[3]);
502     const u32x r3 = h32_from_64 (digest[3]);
503
504     #include VECT_COMPARE_S
505   }
506 }
507
508 extern "C" __global__ void __launch_bounds__ (256, 1) m01760_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
509 {
510   /**
511    * base
512    */
513
514   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
515
516   if (gid >= gid_max) return;
517
518   u32x w0[4];
519
520   w0[0] = pws[gid].i[ 0];
521   w0[1] = pws[gid].i[ 1];
522   w0[2] = pws[gid].i[ 2];
523   w0[3] = pws[gid].i[ 3];
524
525   u32x w1[4];
526
527   w1[0] = 0;
528   w1[1] = 0;
529   w1[2] = 0;
530   w1[3] = 0;
531
532   u32x w2[4];
533
534   w2[0] = 0;
535   w2[1] = 0;
536   w2[2] = 0;
537   w2[3] = 0;
538
539   u32x w3[4];
540
541   w3[0] = 0;
542   w3[1] = 0;
543   w3[2] = 0;
544   w3[3] = 0;
545
546   const u32 pw_len = pws[gid].pw_len;
547
548   /**
549    * main
550    */
551
552   m01760m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
553 }
554
555 extern "C" __global__ void __launch_bounds__ (256, 1) m01760_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
556 {
557   /**
558    * base
559    */
560
561   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
562
563   if (gid >= gid_max) return;
564
565   u32x w0[4];
566
567   w0[0] = pws[gid].i[ 0];
568   w0[1] = pws[gid].i[ 1];
569   w0[2] = pws[gid].i[ 2];
570   w0[3] = pws[gid].i[ 3];
571
572   u32x w1[4];
573
574   w1[0] = pws[gid].i[ 4];
575   w1[1] = pws[gid].i[ 5];
576   w1[2] = pws[gid].i[ 6];
577   w1[3] = pws[gid].i[ 7];
578
579   u32x w2[4];
580
581   w2[0] = 0;
582   w2[1] = 0;
583   w2[2] = 0;
584   w2[3] = 0;
585
586   u32x w3[4];
587
588   w3[0] = 0;
589   w3[1] = 0;
590   w3[2] = 0;
591   w3[3] = 0;
592
593   const u32 pw_len = pws[gid].pw_len;
594
595   /**
596    * main
597    */
598
599   m01760m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
600 }
601
602 extern "C" __global__ void __launch_bounds__ (256, 1) m01760_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
603 {
604   /**
605    * base
606    */
607
608   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
609
610   if (gid >= gid_max) return;
611
612   u32x w0[4];
613
614   w0[0] = pws[gid].i[ 0];
615   w0[1] = pws[gid].i[ 1];
616   w0[2] = pws[gid].i[ 2];
617   w0[3] = pws[gid].i[ 3];
618
619   u32x w1[4];
620
621   w1[0] = pws[gid].i[ 4];
622   w1[1] = pws[gid].i[ 5];
623   w1[2] = pws[gid].i[ 6];
624   w1[3] = pws[gid].i[ 7];
625
626   u32x w2[4];
627
628   w2[0] = pws[gid].i[ 8];
629   w2[1] = pws[gid].i[ 9];
630   w2[2] = pws[gid].i[10];
631   w2[3] = pws[gid].i[11];
632
633   u32x w3[4];
634
635   w3[0] = pws[gid].i[12];
636   w3[1] = pws[gid].i[13];
637   w3[2] = 0;
638   w3[3] = 0;
639
640   const u32 pw_len = pws[gid].pw_len;
641
642   /**
643    * main
644    */
645
646   m01760m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
647 }
648
649 extern "C" __global__ void __launch_bounds__ (256, 1) m01760_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
650 {
651   /**
652    * base
653    */
654
655   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
656
657   if (gid >= gid_max) return;
658
659   u32x w0[4];
660
661   w0[0] = pws[gid].i[ 0];
662   w0[1] = pws[gid].i[ 1];
663   w0[2] = pws[gid].i[ 2];
664   w0[3] = pws[gid].i[ 3];
665
666   u32x w1[4];
667
668   w1[0] = 0;
669   w1[1] = 0;
670   w1[2] = 0;
671   w1[3] = 0;
672
673   u32x w2[4];
674
675   w2[0] = 0;
676   w2[1] = 0;
677   w2[2] = 0;
678   w2[3] = 0;
679
680   u32x w3[4];
681
682   w3[0] = 0;
683   w3[1] = 0;
684   w3[2] = 0;
685   w3[3] = 0;
686
687   const u32 pw_len = pws[gid].pw_len;
688
689   /**
690    * main
691    */
692
693   m01760s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
694 }
695
696 extern "C" __global__ void __launch_bounds__ (256, 1) m01760_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
697 {
698   /**
699    * base
700    */
701
702   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
703
704   if (gid >= gid_max) return;
705
706   u32x w0[4];
707
708   w0[0] = pws[gid].i[ 0];
709   w0[1] = pws[gid].i[ 1];
710   w0[2] = pws[gid].i[ 2];
711   w0[3] = pws[gid].i[ 3];
712
713   u32x w1[4];
714
715   w1[0] = pws[gid].i[ 4];
716   w1[1] = pws[gid].i[ 5];
717   w1[2] = pws[gid].i[ 6];
718   w1[3] = pws[gid].i[ 7];
719
720   u32x w2[4];
721
722   w2[0] = 0;
723   w2[1] = 0;
724   w2[2] = 0;
725   w2[3] = 0;
726
727   u32x w3[4];
728
729   w3[0] = 0;
730   w3[1] = 0;
731   w3[2] = 0;
732   w3[3] = 0;
733
734   const u32 pw_len = pws[gid].pw_len;
735
736   /**
737    * main
738    */
739
740   m01760s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
741 }
742
743 extern "C" __global__ void __launch_bounds__ (256, 1) m01760_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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
744 {
745   /**
746    * base
747    */
748
749   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
750
751   if (gid >= gid_max) return;
752
753   u32x w0[4];
754
755   w0[0] = pws[gid].i[ 0];
756   w0[1] = pws[gid].i[ 1];
757   w0[2] = pws[gid].i[ 2];
758   w0[3] = pws[gid].i[ 3];
759
760   u32x w1[4];
761
762   w1[0] = pws[gid].i[ 4];
763   w1[1] = pws[gid].i[ 5];
764   w1[2] = pws[gid].i[ 6];
765   w1[3] = pws[gid].i[ 7];
766
767   u32x w2[4];
768
769   w2[0] = pws[gid].i[ 8];
770   w2[1] = pws[gid].i[ 9];
771   w2[2] = pws[gid].i[10];
772   w2[3] = pws[gid].i[11];
773
774   u32x w3[4];
775
776   w3[0] = pws[gid].i[12];
777   w3[1] = pws[gid].i[13];
778   w3[2] = 0;
779   w3[3] = 0;
780
781   const u32 pw_len = pws[gid].pw_len;
782
783   /**
784    * main
785    */
786
787   m01760s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
788 }