Enable unrolling of SHA512 with HMAC on NV
[hashcat.git] / OpenCL / m01760_a0.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 "include/rp_kernel.h"
22 #include "OpenCL/rp.c"
23 #include "OpenCL/simd.c"
24
25 __constant u64 k_sha512[80] =
26 {
27   SHA512C00, SHA512C01, SHA512C02, SHA512C03,
28   SHA512C04, SHA512C05, SHA512C06, SHA512C07,
29   SHA512C08, SHA512C09, SHA512C0a, SHA512C0b,
30   SHA512C0c, SHA512C0d, SHA512C0e, SHA512C0f,
31   SHA512C10, SHA512C11, SHA512C12, SHA512C13,
32   SHA512C14, SHA512C15, SHA512C16, SHA512C17,
33   SHA512C18, SHA512C19, SHA512C1a, SHA512C1b,
34   SHA512C1c, SHA512C1d, SHA512C1e, SHA512C1f,
35   SHA512C20, SHA512C21, SHA512C22, SHA512C23,
36   SHA512C24, SHA512C25, SHA512C26, SHA512C27,
37   SHA512C28, SHA512C29, SHA512C2a, SHA512C2b,
38   SHA512C2c, SHA512C2d, SHA512C2e, SHA512C2f,
39   SHA512C30, SHA512C31, SHA512C32, SHA512C33,
40   SHA512C34, SHA512C35, SHA512C36, SHA512C37,
41   SHA512C38, SHA512C39, SHA512C3a, SHA512C3b,
42   SHA512C3c, SHA512C3d, SHA512C3e, SHA512C3f,
43   SHA512C40, SHA512C41, SHA512C42, SHA512C43,
44   SHA512C44, SHA512C45, SHA512C46, SHA512C47,
45   SHA512C48, SHA512C49, SHA512C4a, SHA512C4b,
46   SHA512C4c, SHA512C4d, SHA512C4e, SHA512C4f,
47 };
48
49 void sha512_transform (const u64x w0[4], const u64x w1[4], const u64x w2[4], const u64x w3[4], u64x digest[8])
50 {
51   u64x w0_t = w0[0];
52   u64x w1_t = w0[1];
53   u64x w2_t = w0[2];
54   u64x w3_t = w0[3];
55   u64x w4_t = w1[0];
56   u64x w5_t = w1[1];
57   u64x w6_t = w1[2];
58   u64x w7_t = w1[3];
59   u64x w8_t = w2[0];
60   u64x w9_t = w2[1];
61   u64x wa_t = w2[2];
62   u64x wb_t = w2[3];
63   u64x wc_t = w3[0];
64   u64x wd_t = w3[1];
65   u64x we_t = w3[2];
66   u64x wf_t = w3[3];
67
68   u64x a = digest[0];
69   u64x b = digest[1];
70   u64x c = digest[2];
71   u64x d = digest[3];
72   u64x e = digest[4];
73   u64x f = digest[5];
74   u64x g = digest[6];
75   u64x h = digest[7];
76
77   #define ROUND_EXPAND()                            \
78   {                                                 \
79     w0_t = SHA512_EXPAND (we_t, w9_t, w1_t, w0_t);  \
80     w1_t = SHA512_EXPAND (wf_t, wa_t, w2_t, w1_t);  \
81     w2_t = SHA512_EXPAND (w0_t, wb_t, w3_t, w2_t);  \
82     w3_t = SHA512_EXPAND (w1_t, wc_t, w4_t, w3_t);  \
83     w4_t = SHA512_EXPAND (w2_t, wd_t, w5_t, w4_t);  \
84     w5_t = SHA512_EXPAND (w3_t, we_t, w6_t, w5_t);  \
85     w6_t = SHA512_EXPAND (w4_t, wf_t, w7_t, w6_t);  \
86     w7_t = SHA512_EXPAND (w5_t, w0_t, w8_t, w7_t);  \
87     w8_t = SHA512_EXPAND (w6_t, w1_t, w9_t, w8_t);  \
88     w9_t = SHA512_EXPAND (w7_t, w2_t, wa_t, w9_t);  \
89     wa_t = SHA512_EXPAND (w8_t, w3_t, wb_t, wa_t);  \
90     wb_t = SHA512_EXPAND (w9_t, w4_t, wc_t, wb_t);  \
91     wc_t = SHA512_EXPAND (wa_t, w5_t, wd_t, wc_t);  \
92     wd_t = SHA512_EXPAND (wb_t, w6_t, we_t, wd_t);  \
93     we_t = SHA512_EXPAND (wc_t, w7_t, wf_t, we_t);  \
94     wf_t = SHA512_EXPAND (wd_t, w8_t, w0_t, wf_t);  \
95   }
96
97   #define ROUND_STEP(i)                                                                   \
98   {                                                                                       \
99     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w0_t, k_sha512[i +  0]); \
100     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w1_t, k_sha512[i +  1]); \
101     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, w2_t, k_sha512[i +  2]); \
102     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, w3_t, k_sha512[i +  3]); \
103     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, w4_t, k_sha512[i +  4]); \
104     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, w5_t, k_sha512[i +  5]); \
105     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, w6_t, k_sha512[i +  6]); \
106     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, w7_t, k_sha512[i +  7]); \
107     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w8_t, k_sha512[i +  8]); \
108     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w9_t, k_sha512[i +  9]); \
109     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, wa_t, k_sha512[i + 10]); \
110     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, wb_t, k_sha512[i + 11]); \
111     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, wc_t, k_sha512[i + 12]); \
112     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, wd_t, k_sha512[i + 13]); \
113     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, we_t, k_sha512[i + 14]); \
114     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, wf_t, k_sha512[i + 15]); \
115   }
116
117   ROUND_STEP (0);
118
119   #ifdef IS_AMD
120   // #pragma unroll
121   // breaks compiler
122   #else
123   #pragma unroll
124   #endif
125   for (int i = 16; i < 80; i += 16)
126   {
127     ROUND_EXPAND (); ROUND_STEP (i);
128   }
129
130   digest[0] += a;
131   digest[1] += b;
132   digest[2] += c;
133   digest[3] += d;
134   digest[4] += e;
135   digest[5] += f;
136   digest[6] += g;
137   digest[7] += h;
138 }
139
140 void hmac_sha512_pad (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], u64x ipad[8], u64x opad[8])
141 {
142   u64x w0_t[4];
143   u64x w1_t[4];
144   u64x w2_t[4];
145   u64x w3_t[4];
146
147   w0_t[0] = hl32_to_64 (w0[0], w0[1]) ^ (u64x) 0x3636363636363636;
148   w0_t[1] = hl32_to_64 (w0[2], w0[3]) ^ (u64x) 0x3636363636363636;
149   w0_t[2] = hl32_to_64 (w1[0], w1[1]) ^ (u64x) 0x3636363636363636;
150   w0_t[3] = hl32_to_64 (w1[2], w1[3]) ^ (u64x) 0x3636363636363636;
151   w1_t[0] = hl32_to_64 (w2[0], w2[1]) ^ (u64x) 0x3636363636363636;
152   w1_t[1] = hl32_to_64 (w2[2], w2[3]) ^ (u64x) 0x3636363636363636;
153   w1_t[2] = hl32_to_64 (w3[0], w3[1]) ^ (u64x) 0x3636363636363636;
154   w1_t[3] = hl32_to_64 (w3[2], w3[3]) ^ (u64x) 0x3636363636363636;
155   w2_t[0] =                             (u64x) 0x3636363636363636;
156   w2_t[1] =                             (u64x) 0x3636363636363636;
157   w2_t[2] =                             (u64x) 0x3636363636363636;
158   w2_t[3] =                             (u64x) 0x3636363636363636;
159   w3_t[0] =                             (u64x) 0x3636363636363636;
160   w3_t[1] =                             (u64x) 0x3636363636363636;
161   w3_t[2] =                             (u64x) 0x3636363636363636;
162   w3_t[3] =                             (u64x) 0x3636363636363636;
163
164   ipad[0] = SHA512M_A;
165   ipad[1] = SHA512M_B;
166   ipad[2] = SHA512M_C;
167   ipad[3] = SHA512M_D;
168   ipad[4] = SHA512M_E;
169   ipad[5] = SHA512M_F;
170   ipad[6] = SHA512M_G;
171   ipad[7] = SHA512M_H;
172
173   sha512_transform (w0_t, w1_t, w2_t, w3_t, ipad);
174
175   w0_t[0] = hl32_to_64 (w0[0], w0[1]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
176   w0_t[1] = hl32_to_64 (w0[2], w0[3]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
177   w0_t[2] = hl32_to_64 (w1[0], w1[1]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
178   w0_t[3] = hl32_to_64 (w1[2], w1[3]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
179   w1_t[0] = hl32_to_64 (w2[0], w2[1]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
180   w1_t[1] = hl32_to_64 (w2[2], w2[3]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
181   w1_t[2] = hl32_to_64 (w3[0], w3[1]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
182   w1_t[3] = hl32_to_64 (w3[2], w3[3]) ^ (u64x) 0x5c5c5c5c5c5c5c5c;
183   w2_t[0] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
184   w2_t[1] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
185   w2_t[2] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
186   w2_t[3] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
187   w3_t[0] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
188   w3_t[1] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
189   w3_t[2] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
190   w3_t[3] =                             (u64x) 0x5c5c5c5c5c5c5c5c;
191
192   opad[0] = SHA512M_A;
193   opad[1] = SHA512M_B;
194   opad[2] = SHA512M_C;
195   opad[3] = SHA512M_D;
196   opad[4] = SHA512M_E;
197   opad[5] = SHA512M_F;
198   opad[6] = SHA512M_G;
199   opad[7] = SHA512M_H;
200
201   sha512_transform (w0_t, w1_t, w2_t, w3_t, opad);
202 }
203
204 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])
205 {
206   u64x w0_t[4];
207   u64x w1_t[4];
208   u64x w2_t[4];
209   u64x w3_t[4];
210
211   w0_t[0] = hl32_to_64 (w0[0], w0[1]);
212   w0_t[1] = hl32_to_64 (w0[2], w0[3]);
213   w0_t[2] = hl32_to_64 (w1[0], w1[1]);
214   w0_t[3] = hl32_to_64 (w1[2], w1[3]);
215   w1_t[0] = hl32_to_64 (w2[0], w2[1]);
216   w1_t[1] = hl32_to_64 (w2[2], w2[3]);
217   w1_t[2] = hl32_to_64 (w3[0], w3[1]);
218   w1_t[3] = 0;
219   w2_t[0] = 0;
220   w2_t[1] = 0;
221   w2_t[2] = 0;
222   w2_t[3] = 0;
223   w3_t[0] = 0;
224   w3_t[1] = 0;
225   w3_t[2] = 0;
226   w3_t[3] = hl32_to_64 (w3[2], w3[3]);
227
228   digest[0] = ipad[0];
229   digest[1] = ipad[1];
230   digest[2] = ipad[2];
231   digest[3] = ipad[3];
232   digest[4] = ipad[4];
233   digest[5] = ipad[5];
234   digest[6] = ipad[6];
235   digest[7] = ipad[7];
236
237   sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
238
239   w0_t[0] = digest[0];
240   w0_t[1] = digest[1];
241   w0_t[2] = digest[2];
242   w0_t[3] = digest[3];
243   w1_t[0] = digest[4];
244   w1_t[1] = digest[5];
245   w1_t[2] = digest[6];
246   w1_t[3] = digest[7];
247   w2_t[0] = 0x8000000000000000;
248   w2_t[1] = 0;
249   w2_t[2] = 0;
250   w2_t[3] = 0;
251   w3_t[0] = 0;
252   w3_t[1] = 0;
253   w3_t[2] = 0;
254   w3_t[3] = (128 + 64) * 8;
255
256   digest[0] = opad[0];
257   digest[1] = opad[1];
258   digest[2] = opad[2];
259   digest[3] = opad[3];
260   digest[4] = opad[4];
261   digest[5] = opad[5];
262   digest[6] = opad[6];
263   digest[7] = opad[7];
264
265   sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
266 }
267
268 __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)
269 {
270   /**
271    * modifier
272    */
273
274   const u32 lid = get_local_id (0);
275
276   /**
277    * base
278    */
279
280   const u32 gid = get_global_id (0);
281
282   if (gid >= gid_max) return;
283
284   u32 pw_buf0[4];
285   u32 pw_buf1[4];
286
287   pw_buf0[0] = pws[gid].i[0];
288   pw_buf0[1] = pws[gid].i[1];
289   pw_buf0[2] = pws[gid].i[2];
290   pw_buf0[3] = pws[gid].i[3];
291   pw_buf1[0] = pws[gid].i[4];
292   pw_buf1[1] = pws[gid].i[5];
293   pw_buf1[2] = pws[gid].i[6];
294   pw_buf1[3] = pws[gid].i[7];
295
296   const u32 pw_len = pws[gid].pw_len;
297
298   /**
299    * salt
300    */
301
302   u32 salt_buf0[4];
303   u32 salt_buf1[4];
304   u32 salt_buf2[4];
305   u32 salt_buf3[4];
306
307   salt_buf0[0] = swap32_S (salt_bufs[salt_pos].salt_buf[ 0]);
308   salt_buf0[1] = swap32_S (salt_bufs[salt_pos].salt_buf[ 1]);
309   salt_buf0[2] = swap32_S (salt_bufs[salt_pos].salt_buf[ 2]);
310   salt_buf0[3] = swap32_S (salt_bufs[salt_pos].salt_buf[ 3]);
311   salt_buf1[0] = swap32_S (salt_bufs[salt_pos].salt_buf[ 4]);
312   salt_buf1[1] = swap32_S (salt_bufs[salt_pos].salt_buf[ 5]);
313   salt_buf1[2] = swap32_S (salt_bufs[salt_pos].salt_buf[ 6]);
314   salt_buf1[3] = swap32_S (salt_bufs[salt_pos].salt_buf[ 7]);
315   salt_buf2[0] = swap32_S (salt_bufs[salt_pos].salt_buf[ 8]);
316   salt_buf2[1] = swap32_S (salt_bufs[salt_pos].salt_buf[ 9]);
317   salt_buf2[2] = swap32_S (salt_bufs[salt_pos].salt_buf[10]);
318   salt_buf2[3] = swap32_S (salt_bufs[salt_pos].salt_buf[11]);
319   salt_buf3[0] = swap32_S (salt_bufs[salt_pos].salt_buf[12]);
320   salt_buf3[1] = swap32_S (salt_bufs[salt_pos].salt_buf[13]);
321   salt_buf3[2] = swap32_S (salt_bufs[salt_pos].salt_buf[14]);
322   salt_buf3[3] = swap32_S (salt_bufs[salt_pos].salt_buf[15]);
323
324   const u32 salt_len = salt_bufs[salt_pos].salt_len;
325
326   /**
327    * pads
328    */
329
330   u32x w0_t[4];
331   u32x w1_t[4];
332   u32x w2_t[4];
333   u32x w3_t[4];
334
335   w0_t[0] = salt_buf0[0];
336   w0_t[1] = salt_buf0[1];
337   w0_t[2] = salt_buf0[2];
338   w0_t[3] = salt_buf0[3];
339   w1_t[0] = salt_buf1[0];
340   w1_t[1] = salt_buf1[1];
341   w1_t[2] = salt_buf1[2];
342   w1_t[3] = salt_buf1[3];
343   w2_t[0] = salt_buf2[0];
344   w2_t[1] = salt_buf2[1];
345   w2_t[2] = salt_buf2[2];
346   w2_t[3] = salt_buf2[3];
347   w3_t[0] = salt_buf3[0];
348   w3_t[1] = salt_buf3[1];
349   w3_t[2] = salt_buf3[2];
350   w3_t[3] = salt_buf3[3];
351
352   u64x ipad[8];
353   u64x opad[8];
354
355   hmac_sha512_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
356
357   /**
358    * loop
359    */
360
361   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
362   {
363     u32x w0[4] = { 0 };
364     u32x w1[4] = { 0 };
365     u32x w2[4] = { 0 };
366     u32x w3[4] = { 0 };
367
368     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
369
370     append_0x80_2x4_VV (w0, w1, out_len);
371
372     w0_t[0] = swap32 (w0[0]);
373     w0_t[1] = swap32 (w0[1]);
374     w0_t[2] = swap32 (w0[2]);
375     w0_t[3] = swap32 (w0[3]);
376     w1_t[0] = swap32 (w1[0]);
377     w1_t[1] = swap32 (w1[1]);
378     w1_t[2] = swap32 (w1[2]);
379     w1_t[3] = swap32 (w1[3]);
380     w2_t[0] = 0;
381     w2_t[1] = 0;
382     w2_t[2] = 0;
383     w2_t[3] = 0;
384     w3_t[0] = 0;
385     w3_t[1] = 0;
386     w3_t[2] = 0;
387     w3_t[3] = (128 + out_len) * 8;
388
389     u64x digest[8];
390
391     hmac_sha512_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
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     COMPARE_M_SIMD (r0, r1, r2, r3);
399   }
400 }
401
402 __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)
403 {
404 }
405
406 __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)
407 {
408 }
409
410 __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)
411 {
412   /**
413    * modifier
414    */
415
416   const u32 lid = get_local_id (0);
417
418   /**
419    * base
420    */
421
422   const u32 gid = get_global_id (0);
423
424   if (gid >= gid_max) return;
425
426   u32 pw_buf0[4];
427   u32 pw_buf1[4];
428
429   pw_buf0[0] = pws[gid].i[0];
430   pw_buf0[1] = pws[gid].i[1];
431   pw_buf0[2] = pws[gid].i[2];
432   pw_buf0[3] = pws[gid].i[3];
433   pw_buf1[0] = pws[gid].i[4];
434   pw_buf1[1] = pws[gid].i[5];
435   pw_buf1[2] = pws[gid].i[6];
436   pw_buf1[3] = pws[gid].i[7];
437
438   const u32 pw_len = pws[gid].pw_len;
439
440   /**
441    * salt
442    */
443
444   u32 salt_buf0[4];
445   u32 salt_buf1[4];
446   u32 salt_buf2[4];
447   u32 salt_buf3[4];
448
449   salt_buf0[0] = swap32_S (salt_bufs[salt_pos].salt_buf[ 0]);
450   salt_buf0[1] = swap32_S (salt_bufs[salt_pos].salt_buf[ 1]);
451   salt_buf0[2] = swap32_S (salt_bufs[salt_pos].salt_buf[ 2]);
452   salt_buf0[3] = swap32_S (salt_bufs[salt_pos].salt_buf[ 3]);
453   salt_buf1[0] = swap32_S (salt_bufs[salt_pos].salt_buf[ 4]);
454   salt_buf1[1] = swap32_S (salt_bufs[salt_pos].salt_buf[ 5]);
455   salt_buf1[2] = swap32_S (salt_bufs[salt_pos].salt_buf[ 6]);
456   salt_buf1[3] = swap32_S (salt_bufs[salt_pos].salt_buf[ 7]);
457   salt_buf2[0] = swap32_S (salt_bufs[salt_pos].salt_buf[ 8]);
458   salt_buf2[1] = swap32_S (salt_bufs[salt_pos].salt_buf[ 9]);
459   salt_buf2[2] = swap32_S (salt_bufs[salt_pos].salt_buf[10]);
460   salt_buf2[3] = swap32_S (salt_bufs[salt_pos].salt_buf[11]);
461   salt_buf3[0] = swap32_S (salt_bufs[salt_pos].salt_buf[12]);
462   salt_buf3[1] = swap32_S (salt_bufs[salt_pos].salt_buf[13]);
463   salt_buf3[2] = swap32_S (salt_bufs[salt_pos].salt_buf[14]);
464   salt_buf3[3] = swap32_S (salt_bufs[salt_pos].salt_buf[15]);
465
466   const u32 salt_len = salt_bufs[salt_pos].salt_len;
467
468   /**
469    * pads
470    */
471
472   u32x w0_t[4];
473   u32x w1_t[4];
474   u32x w2_t[4];
475   u32x w3_t[4];
476
477   w0_t[0] = salt_buf0[0];
478   w0_t[1] = salt_buf0[1];
479   w0_t[2] = salt_buf0[2];
480   w0_t[3] = salt_buf0[3];
481   w1_t[0] = salt_buf1[0];
482   w1_t[1] = salt_buf1[1];
483   w1_t[2] = salt_buf1[2];
484   w1_t[3] = salt_buf1[3];
485   w2_t[0] = salt_buf2[0];
486   w2_t[1] = salt_buf2[1];
487   w2_t[2] = salt_buf2[2];
488   w2_t[3] = salt_buf2[3];
489   w3_t[0] = salt_buf3[0];
490   w3_t[1] = salt_buf3[1];
491   w3_t[2] = salt_buf3[2];
492   w3_t[3] = salt_buf3[3];
493
494   u64x ipad[8];
495   u64x opad[8];
496
497   hmac_sha512_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
498
499   /**
500    * digest
501    */
502
503   const u32 search[4] =
504   {
505     digests_buf[digests_offset].digest_buf[DGST_R0],
506     digests_buf[digests_offset].digest_buf[DGST_R1],
507     digests_buf[digests_offset].digest_buf[DGST_R2],
508     digests_buf[digests_offset].digest_buf[DGST_R3]
509   };
510
511   /**
512    * loop
513    */
514
515   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
516   {
517     u32x w0[4] = { 0 };
518     u32x w1[4] = { 0 };
519     u32x w2[4] = { 0 };
520     u32x w3[4] = { 0 };
521
522     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
523
524     append_0x80_2x4_VV (w0, w1, out_len);
525
526     w0_t[0] = swap32 (w0[0]);
527     w0_t[1] = swap32 (w0[1]);
528     w0_t[2] = swap32 (w0[2]);
529     w0_t[3] = swap32 (w0[3]);
530     w1_t[0] = swap32 (w1[0]);
531     w1_t[1] = swap32 (w1[1]);
532     w1_t[2] = swap32 (w1[2]);
533     w1_t[3] = swap32 (w1[3]);
534     w2_t[0] = 0;
535     w2_t[1] = 0;
536     w2_t[2] = 0;
537     w2_t[3] = 0;
538     w3_t[0] = 0;
539     w3_t[1] = 0;
540     w3_t[2] = 0;
541     w3_t[3] = (128 + out_len) * 8;
542
543     u64x digest[8];
544
545     hmac_sha512_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
546
547     const u32x r0 = l32_from_64 (digest[7]);
548     const u32x r1 = h32_from_64 (digest[7]);
549     const u32x r2 = l32_from_64 (digest[3]);
550     const u32x r3 = h32_from_64 (digest[3]);
551
552     COMPARE_S_SIMD (r0, r1, r2, r3);
553   }
554 }
555
556 __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)
557 {
558 }
559
560 __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)
561 {
562 }