Fixed two major problems
[hashcat.git] / OpenCL / m01760_a1.cl
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 #define DGST_R0 14
12 #define DGST_R1 15
13 #define DGST_R2 6
14 #define DGST_R3 7
15
16 #include "include/kernel_functions.c"
17 #include "OpenCL/types_ocl.c"
18 #include "OpenCL/common.c"
19
20 #define COMPARE_S "OpenCL/check_single_comp4.c"
21 #define COMPARE_M "OpenCL/check_multi_comp4.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 u64 w0[4], const u64 w1[4], const u64 w2[4], const u64 w3[4], u64 digest[8])
48 {
49   u64 w0_t = w0[0];
50   u64 w1_t = w0[1];
51   u64 w2_t = w0[2];
52   u64 w3_t = w0[3];
53   u64 w4_t = w1[0];
54   u64 w5_t = w1[1];
55   u64 w6_t = w1[2];
56   u64 w7_t = w1[3];
57   u64 w8_t = w2[0];
58   u64 w9_t = w2[1];
59   u64 wa_t = w2[2];
60   u64 wb_t = w2[3];
61   u64 wc_t = w3[0];
62   u64 wd_t = w3[1];
63   u64 we_t = w3[2];
64   u64 wf_t = 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   digest[0] += a;
124   digest[1] += b;
125   digest[2] += c;
126   digest[3] += d;
127   digest[4] += e;
128   digest[5] += f;
129   digest[6] += g;
130   digest[7] += h;
131 }
132
133 static void hmac_sha512_pad (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], u64 ipad[8], u64 opad[8])
134 {
135   u64 w0_t[4];
136   u64 w1_t[4];
137   u64 w2_t[4];
138   u64 w3_t[4];
139
140   w0_t[0] = hl32_to_64 (w0[0], w0[1]) ^ 0x3636363636363636;
141   w0_t[1] = hl32_to_64 (w0[2], w0[3]) ^ 0x3636363636363636;
142   w0_t[2] = hl32_to_64 (w1[0], w1[1]) ^ 0x3636363636363636;
143   w0_t[3] = hl32_to_64 (w1[2], w1[3]) ^ 0x3636363636363636;
144   w1_t[0] = hl32_to_64 (w2[0], w2[1]) ^ 0x3636363636363636;
145   w1_t[1] = hl32_to_64 (w2[2], w2[3]) ^ 0x3636363636363636;
146   w1_t[2] = hl32_to_64 (w3[0], w3[1]) ^ 0x3636363636363636;
147   w1_t[3] = hl32_to_64 (w3[2], w3[3]) ^ 0x3636363636363636;
148   w2_t[0] =                                 0 ^ 0x3636363636363636;
149   w2_t[1] =                                 0 ^ 0x3636363636363636;
150   w2_t[2] =                                 0 ^ 0x3636363636363636;
151   w2_t[3] =                                 0 ^ 0x3636363636363636;
152   w3_t[0] =                                 0 ^ 0x3636363636363636;
153   w3_t[1] =                                 0 ^ 0x3636363636363636;
154   w3_t[2] =                                 0 ^ 0x3636363636363636;
155   w3_t[3] =                                 0 ^ 0x3636363636363636;
156
157   ipad[0] = SHA512M_A;
158   ipad[1] = SHA512M_B;
159   ipad[2] = SHA512M_C;
160   ipad[3] = SHA512M_D;
161   ipad[4] = SHA512M_E;
162   ipad[5] = SHA512M_F;
163   ipad[6] = SHA512M_G;
164   ipad[7] = SHA512M_H;
165
166   sha512_transform (w0_t, w1_t, w2_t, w3_t, ipad);
167
168   w0_t[0] = hl32_to_64 (w0[0], w0[1]) ^ 0x5c5c5c5c5c5c5c5c;
169   w0_t[1] = hl32_to_64 (w0[2], w0[3]) ^ 0x5c5c5c5c5c5c5c5c;
170   w0_t[2] = hl32_to_64 (w1[0], w1[1]) ^ 0x5c5c5c5c5c5c5c5c;
171   w0_t[3] = hl32_to_64 (w1[2], w1[3]) ^ 0x5c5c5c5c5c5c5c5c;
172   w1_t[0] = hl32_to_64 (w2[0], w2[1]) ^ 0x5c5c5c5c5c5c5c5c;
173   w1_t[1] = hl32_to_64 (w2[2], w2[3]) ^ 0x5c5c5c5c5c5c5c5c;
174   w1_t[2] = hl32_to_64 (w3[0], w3[1]) ^ 0x5c5c5c5c5c5c5c5c;
175   w1_t[3] = hl32_to_64 (w3[2], w3[3]) ^ 0x5c5c5c5c5c5c5c5c;
176   w2_t[0] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
177   w2_t[1] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
178   w2_t[2] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
179   w2_t[3] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
180   w3_t[0] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
181   w3_t[1] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
182   w3_t[2] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
183   w3_t[3] =                                 0 ^ 0x5c5c5c5c5c5c5c5c;
184
185   opad[0] = SHA512M_A;
186   opad[1] = SHA512M_B;
187   opad[2] = SHA512M_C;
188   opad[3] = SHA512M_D;
189   opad[4] = SHA512M_E;
190   opad[5] = SHA512M_F;
191   opad[6] = SHA512M_G;
192   opad[7] = SHA512M_H;
193
194   sha512_transform (w0_t, w1_t, w2_t, w3_t, opad);
195 }
196
197 static void hmac_sha512_run (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], u64 ipad[8], u64 opad[8], u64 digest[8])
198 {
199   u64 w0_t[4];
200   u64 w1_t[4];
201   u64 w2_t[4];
202   u64 w3_t[4];
203
204   w0_t[0] = hl32_to_64 (w0[0], w0[1]);
205   w0_t[1] = hl32_to_64 (w0[2], w0[3]);
206   w0_t[2] = hl32_to_64 (w1[0], w1[1]);
207   w0_t[3] = hl32_to_64 (w1[2], w1[3]);
208   w1_t[0] = hl32_to_64 (w2[0], w2[1]);
209   w1_t[1] = hl32_to_64 (w2[2], w2[3]);
210   w1_t[2] = hl32_to_64 (w3[0], w3[1]);
211   w1_t[3] = 0;
212   w2_t[0] = 0;
213   w2_t[1] = 0;
214   w2_t[2] = 0;
215   w2_t[3] = 0;
216   w3_t[0] = 0;
217   w3_t[1] = 0;
218   w3_t[2] = 0;
219   w3_t[3] = hl32_to_64 (w3[2], w3[3]);
220
221   digest[0] = ipad[0];
222   digest[1] = ipad[1];
223   digest[2] = ipad[2];
224   digest[3] = ipad[3];
225   digest[4] = ipad[4];
226   digest[5] = ipad[5];
227   digest[6] = ipad[6];
228   digest[7] = ipad[7];
229
230   sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
231
232   w0_t[0] = digest[0];
233   w0_t[1] = digest[1];
234   w0_t[2] = digest[2];
235   w0_t[3] = digest[3];
236   w1_t[0] = digest[4];
237   w1_t[1] = digest[5];
238   w1_t[2] = digest[6];
239   w1_t[3] = digest[7];
240   w2_t[0] = 0x8000000000000000;
241   w2_t[1] = 0;
242   w2_t[2] = 0;
243   w2_t[3] = 0;
244   w3_t[0] = 0;
245   w3_t[1] = 0;
246   w3_t[2] = 0;
247   w3_t[3] = (128 + 64) * 8;
248
249   digest[0] = opad[0];
250   digest[1] = opad[1];
251   digest[2] = opad[2];
252   digest[3] = opad[3];
253   digest[4] = opad[4];
254   digest[5] = opad[5];
255   digest[6] = opad[6];
256   digest[7] = opad[7];
257
258   sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
259 }
260
261 __kernel void m01760_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)
262 {
263   /**
264    * modifier
265    */
266
267   const u32 lid = get_local_id (0);
268
269   /**
270    * base
271    */
272
273   const u32 gid = get_global_id (0);
274
275   if (gid >= gid_max) return;
276
277   u32 wordl0[4];
278
279   wordl0[0] = pws[gid].i[ 0];
280   wordl0[1] = pws[gid].i[ 1];
281   wordl0[2] = pws[gid].i[ 2];
282   wordl0[3] = pws[gid].i[ 3];
283
284   u32 wordl1[4];
285
286   wordl1[0] = pws[gid].i[ 4];
287   wordl1[1] = pws[gid].i[ 5];
288   wordl1[2] = pws[gid].i[ 6];
289   wordl1[3] = pws[gid].i[ 7];
290
291   u32 wordl2[4];
292
293   wordl2[0] = 0;
294   wordl2[1] = 0;
295   wordl2[2] = 0;
296   wordl2[3] = 0;
297
298   u32 wordl3[4];
299
300   wordl3[0] = 0;
301   wordl3[1] = 0;
302   wordl3[2] = 0;
303   wordl3[3] = 0;
304
305   const u32 pw_l_len = pws[gid].pw_len;
306
307   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
308   {
309     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
310   }
311
312   /**
313    * salt
314    */
315
316   u32 salt_buf0[4];
317
318   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
319   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
320   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
321   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
322
323   u32 salt_buf1[4];
324
325   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
326   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
327   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
328   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
329
330   /**
331    * pads
332    */
333
334   u32 w0_t[4];
335
336   w0_t[0] = swap32 (salt_buf0[0]);
337   w0_t[1] = swap32 (salt_buf0[1]);
338   w0_t[2] = swap32 (salt_buf0[2]);
339   w0_t[3] = swap32 (salt_buf0[3]);
340
341   u32 w1_t[4];
342
343   w1_t[0] = swap32 (salt_buf1[0]);
344   w1_t[1] = swap32 (salt_buf1[1]);
345   w1_t[2] = swap32 (salt_buf1[2]);
346   w1_t[3] = swap32 (salt_buf1[3]);
347
348   u32 w2_t[4];
349
350   w2_t[0] = 0;
351   w2_t[1] = 0;
352   w2_t[2] = 0;
353   w2_t[3] = 0;
354
355   u32 w3_t[4];
356
357   w3_t[0] = 0;
358   w3_t[1] = 0;
359   w3_t[2] = 0;
360   w3_t[3] = 0;
361
362   u64 ipad[8];
363   u64 opad[8];
364
365   hmac_sha512_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
366
367   /**
368    * loop
369    */
370
371   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
372   {
373     const u32 pw_r_len = combs_buf[il_pos].pw_len;
374
375     const u32 pw_len = pw_l_len + pw_r_len;
376
377     u32 wordr0[4];
378
379     wordr0[0] = combs_buf[il_pos].i[0];
380     wordr0[1] = combs_buf[il_pos].i[1];
381     wordr0[2] = combs_buf[il_pos].i[2];
382     wordr0[3] = combs_buf[il_pos].i[3];
383
384     u32 wordr1[4];
385
386     wordr1[0] = combs_buf[il_pos].i[4];
387     wordr1[1] = combs_buf[il_pos].i[5];
388     wordr1[2] = combs_buf[il_pos].i[6];
389     wordr1[3] = combs_buf[il_pos].i[7];
390
391     u32 wordr2[4];
392
393     wordr2[0] = 0;
394     wordr2[1] = 0;
395     wordr2[2] = 0;
396     wordr2[3] = 0;
397
398     u32 wordr3[4];
399
400     wordr3[0] = 0;
401     wordr3[1] = 0;
402     wordr3[2] = 0;
403     wordr3[3] = 0;
404
405     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
406     {
407       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
408     }
409
410     u32 w0[4];
411
412     w0[0] = wordl0[0] | wordr0[0];
413     w0[1] = wordl0[1] | wordr0[1];
414     w0[2] = wordl0[2] | wordr0[2];
415     w0[3] = wordl0[3] | wordr0[3];
416
417     u32 w1[4];
418
419     w1[0] = wordl1[0] | wordr1[0];
420     w1[1] = wordl1[1] | wordr1[1];
421     w1[2] = wordl1[2] | wordr1[2];
422     w1[3] = wordl1[3] | wordr1[3];
423
424     u32 w2[4];
425
426     w2[0] = wordl2[0] | wordr2[0];
427     w2[1] = wordl2[1] | wordr2[1];
428     w2[2] = wordl2[2] | wordr2[2];
429     w2[3] = wordl2[3] | wordr2[3];
430
431     u32 w3[4];
432
433     w3[0] = wordl3[0] | wordr3[0];
434     w3[1] = wordl3[1] | wordr3[1];
435     w3[2] = 0;
436     w3[3] = 0;
437
438     append_0x80_4x4 (w0, w1, w2, w3, pw_len);
439
440     w0_t[0] = swap32 (w0[0]);
441     w0_t[1] = swap32 (w0[1]);
442     w0_t[2] = swap32 (w0[2]);
443     w0_t[3] = swap32 (w0[3]);
444     w1_t[0] = swap32 (w1[0]);
445     w1_t[1] = swap32 (w1[1]);
446     w1_t[2] = swap32 (w1[2]);
447     w1_t[3] = swap32 (w1[3]);
448     w2_t[0] = swap32 (w2[0]);
449     w2_t[1] = swap32 (w2[1]);
450     w2_t[2] = swap32 (w2[2]);
451     w2_t[3] = swap32 (w2[3]);
452     w3_t[0] = swap32 (w3[0]);
453     w3_t[1] = swap32 (w3[1]);
454     w3_t[2] = 0;
455     w3_t[3] = (128 + pw_len) * 8;
456
457     u64 digest[8];
458
459     hmac_sha512_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
460
461
462     const u32 r0 = l32_from_64 (digest[7]);
463     const u32 r1 = h32_from_64 (digest[7]);
464     const u32 r2 = l32_from_64 (digest[3]);
465     const u32 r3 = h32_from_64 (digest[3]);
466
467     #include COMPARE_M
468   }
469 }
470
471 __kernel void m01760_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)
472 {
473 }
474
475 __kernel void m01760_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)
476 {
477 }
478
479 __kernel void m01760_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)
480 {
481   /**
482    * modifier
483    */
484
485   const u32 lid = get_local_id (0);
486
487   /**
488    * base
489    */
490
491   const u32 gid = get_global_id (0);
492
493   if (gid >= gid_max) return;
494
495   u32 wordl0[4];
496
497   wordl0[0] = pws[gid].i[ 0];
498   wordl0[1] = pws[gid].i[ 1];
499   wordl0[2] = pws[gid].i[ 2];
500   wordl0[3] = pws[gid].i[ 3];
501
502   u32 wordl1[4];
503
504   wordl1[0] = pws[gid].i[ 4];
505   wordl1[1] = pws[gid].i[ 5];
506   wordl1[2] = pws[gid].i[ 6];
507   wordl1[3] = pws[gid].i[ 7];
508
509   u32 wordl2[4];
510
511   wordl2[0] = 0;
512   wordl2[1] = 0;
513   wordl2[2] = 0;
514   wordl2[3] = 0;
515
516   u32 wordl3[4];
517
518   wordl3[0] = 0;
519   wordl3[1] = 0;
520   wordl3[2] = 0;
521   wordl3[3] = 0;
522
523   const u32 pw_l_len = pws[gid].pw_len;
524
525   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
526   {
527     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
528   }
529
530   /**
531    * salt
532    */
533
534   u32 salt_buf0[4];
535
536   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
537   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
538   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
539   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
540
541   u32 salt_buf1[4];
542
543   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
544   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
545   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
546   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
547
548   /**
549    * pads
550    */
551
552   u32 w0_t[4];
553
554   w0_t[0] = swap32 (salt_buf0[0]);
555   w0_t[1] = swap32 (salt_buf0[1]);
556   w0_t[2] = swap32 (salt_buf0[2]);
557   w0_t[3] = swap32 (salt_buf0[3]);
558
559   u32 w1_t[4];
560
561   w1_t[0] = swap32 (salt_buf1[0]);
562   w1_t[1] = swap32 (salt_buf1[1]);
563   w1_t[2] = swap32 (salt_buf1[2]);
564   w1_t[3] = swap32 (salt_buf1[3]);
565
566   u32 w2_t[4];
567
568   w2_t[0] = 0;
569   w2_t[1] = 0;
570   w2_t[2] = 0;
571   w2_t[3] = 0;
572
573   u32 w3_t[4];
574
575   w3_t[0] = 0;
576   w3_t[1] = 0;
577   w3_t[2] = 0;
578   w3_t[3] = 0;
579
580   u64 ipad[8];
581   u64 opad[8];
582
583   hmac_sha512_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
584
585   /**
586    * digest
587    */
588
589   const u32 search[4] =
590   {
591     digests_buf[digests_offset].digest_buf[DGST_R0],
592     digests_buf[digests_offset].digest_buf[DGST_R1],
593     digests_buf[digests_offset].digest_buf[DGST_R2],
594     digests_buf[digests_offset].digest_buf[DGST_R3]
595   };
596
597   /**
598    * loop
599    */
600
601   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
602   {
603     const u32 pw_r_len = combs_buf[il_pos].pw_len;
604
605     const u32 pw_len = pw_l_len + pw_r_len;
606
607     u32 wordr0[4];
608
609     wordr0[0] = combs_buf[il_pos].i[0];
610     wordr0[1] = combs_buf[il_pos].i[1];
611     wordr0[2] = combs_buf[il_pos].i[2];
612     wordr0[3] = combs_buf[il_pos].i[3];
613
614     u32 wordr1[4];
615
616     wordr1[0] = combs_buf[il_pos].i[4];
617     wordr1[1] = combs_buf[il_pos].i[5];
618     wordr1[2] = combs_buf[il_pos].i[6];
619     wordr1[3] = combs_buf[il_pos].i[7];
620
621     u32 wordr2[4];
622
623     wordr2[0] = 0;
624     wordr2[1] = 0;
625     wordr2[2] = 0;
626     wordr2[3] = 0;
627
628     u32 wordr3[4];
629
630     wordr3[0] = 0;
631     wordr3[1] = 0;
632     wordr3[2] = 0;
633     wordr3[3] = 0;
634
635     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
636     {
637       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
638     }
639
640     u32 w0[4];
641
642     w0[0] = wordl0[0] | wordr0[0];
643     w0[1] = wordl0[1] | wordr0[1];
644     w0[2] = wordl0[2] | wordr0[2];
645     w0[3] = wordl0[3] | wordr0[3];
646
647     u32 w1[4];
648
649     w1[0] = wordl1[0] | wordr1[0];
650     w1[1] = wordl1[1] | wordr1[1];
651     w1[2] = wordl1[2] | wordr1[2];
652     w1[3] = wordl1[3] | wordr1[3];
653
654     u32 w2[4];
655
656     w2[0] = wordl2[0] | wordr2[0];
657     w2[1] = wordl2[1] | wordr2[1];
658     w2[2] = wordl2[2] | wordr2[2];
659     w2[3] = wordl2[3] | wordr2[3];
660
661     u32 w3[4];
662
663     w3[0] = wordl3[0] | wordr3[0];
664     w3[1] = wordl3[1] | wordr3[1];
665     w3[2] = 0;
666     w3[3] = 0;
667
668     append_0x80_4x4 (w0, w1, w2, w3, pw_len);
669
670     w0_t[0] = swap32 (w0[0]);
671     w0_t[1] = swap32 (w0[1]);
672     w0_t[2] = swap32 (w0[2]);
673     w0_t[3] = swap32 (w0[3]);
674     w1_t[0] = swap32 (w1[0]);
675     w1_t[1] = swap32 (w1[1]);
676     w1_t[2] = swap32 (w1[2]);
677     w1_t[3] = swap32 (w1[3]);
678     w2_t[0] = swap32 (w2[0]);
679     w2_t[1] = swap32 (w2[1]);
680     w2_t[2] = swap32 (w2[2]);
681     w2_t[3] = swap32 (w2[3]);
682     w3_t[0] = swap32 (w3[0]);
683     w3_t[1] = swap32 (w3[1]);
684     w3_t[2] = 0;
685     w3_t[3] = (128 + pw_len) * 8;
686
687     u64 digest[8];
688
689     hmac_sha512_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
690
691
692     const u32 r0 = l32_from_64 (digest[7]);
693     const u32 r1 = h32_from_64 (digest[7]);
694     const u32 r2 = l32_from_64 (digest[3]);
695     const u32 r3 = h32_from_64 (digest[3]);
696
697     #include COMPARE_S
698   }
699 }
700
701 __kernel void m01760_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)
702 {
703 }
704
705 __kernel void m01760_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)
706 {
707 }