Fix m 60 a 3 mangle code
[hashcat.git] / OpenCL / m00060_a3_m.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
7
8 #define NEW_SIMD_CODE
9
10 #include "inc_vendor.cl"
11 #include "inc_hash_constants.h"
12 #include "inc_hash_functions.cl"
13 #include "inc_types.cl"
14 #include "inc_common.cl"
15 #include "inc_simd.cl"
16 #include "mangle.cl"
17
18 void md5_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u32x digest[4])
19 {
20   u32x a = digest[0];
21   u32x b = digest[1];
22   u32x c = digest[2];
23   u32x d = digest[3];
24
25   u32x w0_t = w0[0];
26   u32x w1_t = w0[1];
27   u32x w2_t = w0[2];
28   u32x w3_t = w0[3];
29   u32x w4_t = w1[0];
30   u32x w5_t = w1[1];
31   u32x w6_t = w1[2];
32   u32x w7_t = w1[3];
33   u32x w8_t = w2[0];
34   u32x w9_t = w2[1];
35   u32x wa_t = w2[2];
36   u32x wb_t = w2[3];
37   u32x wc_t = w3[0];
38   u32x wd_t = w3[1];
39   u32x we_t = w3[2];
40   u32x wf_t = w3[3];
41
42   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
43   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
44   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
45   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
46   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
47   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
48   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
49   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
50   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
51   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
52   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
53   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
54   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
55   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
56   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
57   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
58
59   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
60   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
61   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
62   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
63   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
64   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
65   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
66   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
67   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
68   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
69   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
70   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
71   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
72   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
73   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
74   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
75
76   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
77   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
78   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
79   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
80   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
81   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
82   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
83   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
84   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
85   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
86   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
87   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
88   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
89   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
90   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
91   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
92
93   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
94   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
95   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
96   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
97   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
98   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
99   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
100   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
101   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
102   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
103   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
104   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
105   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
106   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
107   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
108   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
109
110   digest[0] += a;
111   digest[1] += b;
112   digest[2] += c;
113   digest[3] += d;
114 }
115
116 void hmac_md5_pad (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], u32x ipad[4], u32x opad[4])
117 {
118   w0[0] = w0[0] ^ 0x36363636;
119   w0[1] = w0[1] ^ 0x36363636;
120   w0[2] = w0[2] ^ 0x36363636;
121   w0[3] = w0[3] ^ 0x36363636;
122   w1[0] = w1[0] ^ 0x36363636;
123   w1[1] = w1[1] ^ 0x36363636;
124   w1[2] = w1[2] ^ 0x36363636;
125   w1[3] = w1[3] ^ 0x36363636;
126   w2[0] = w2[0] ^ 0x36363636;
127   w2[1] = w2[1] ^ 0x36363636;
128   w2[2] = w2[2] ^ 0x36363636;
129   w2[3] = w2[3] ^ 0x36363636;
130   w3[0] = w3[0] ^ 0x36363636;
131   w3[1] = w3[1] ^ 0x36363636;
132   w3[2] = w3[2] ^ 0x36363636;
133   w3[3] = w3[3] ^ 0x36363636;
134
135   ipad[0] = MD5M_A;
136   ipad[1] = MD5M_B;
137   ipad[2] = MD5M_C;
138   ipad[3] = MD5M_D;
139
140   md5_transform (w0, w1, w2, w3, ipad);
141
142   w0[0] = w0[0] ^ 0x6a6a6a6a;
143   w0[1] = w0[1] ^ 0x6a6a6a6a;
144   w0[2] = w0[2] ^ 0x6a6a6a6a;
145   w0[3] = w0[3] ^ 0x6a6a6a6a;
146   w1[0] = w1[0] ^ 0x6a6a6a6a;
147   w1[1] = w1[1] ^ 0x6a6a6a6a;
148   w1[2] = w1[2] ^ 0x6a6a6a6a;
149   w1[3] = w1[3] ^ 0x6a6a6a6a;
150   w2[0] = w2[0] ^ 0x6a6a6a6a;
151   w2[1] = w2[1] ^ 0x6a6a6a6a;
152   w2[2] = w2[2] ^ 0x6a6a6a6a;
153   w2[3] = w2[3] ^ 0x6a6a6a6a;
154   w3[0] = w3[0] ^ 0x6a6a6a6a;
155   w3[1] = w3[1] ^ 0x6a6a6a6a;
156   w3[2] = w3[2] ^ 0x6a6a6a6a;
157   w3[3] = w3[3] ^ 0x6a6a6a6a;
158
159   opad[0] = MD5M_A;
160   opad[1] = MD5M_B;
161   opad[2] = MD5M_C;
162   opad[3] = MD5M_D;
163
164   md5_transform (w0, w1, w2, w3, opad);
165 }
166
167 void hmac_md5_run (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], u32x ipad[4], u32x opad[4], u32x digest[4])
168 {
169   digest[0] = ipad[0];
170   digest[1] = ipad[1];
171   digest[2] = ipad[2];
172   digest[3] = ipad[3];
173
174   md5_transform (w0, w1, w2, w3, digest);
175
176   w0[0] = digest[0];
177   w0[1] = digest[1];
178   w0[2] = digest[2];
179   w0[3] = digest[3];
180   w1[0] = 0x80;
181   w1[1] = 0;
182   w1[2] = 0;
183   w1[3] = 0;
184   w2[0] = 0;
185   w2[1] = 0;
186   w2[2] = 0;
187   w2[3] = 0;
188   w3[0] = 0;
189   w3[1] = 0;
190   w3[2] = (64 + 16) * 8;
191   w3[3] = 0;
192
193   digest[0] = opad[0];
194   digest[1] = opad[1];
195   digest[2] = opad[2];
196   digest[3] = opad[3];
197
198   md5_transform (w0, w1, w2, w3, digest);
199 }
200
201 void m00060m (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], const u32 pw_len, __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 *esal_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
202 {
203   /**
204    * modifier
205    */
206
207   const u32 gid = get_global_id (0);
208   const u32 lid = get_local_id (0);
209
210   /**
211    * salt
212    */
213
214   u32 salt_buf0[4];
215   u32 salt_buf1[4];
216   u32 salt_buf2[4];
217   u32 salt_buf3[4];
218
219   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
220   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
221   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
222   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
223   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
224   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
225   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
226   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
227   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
228   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
229   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
230   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
231   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
232   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
233   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
234   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
235
236   const u32 salt_len = salt_bufs[salt_pos].salt_len;
237
238   /**
239    * pads
240    */
241
242   u32x w0_t[4];
243   u32x w1_t[4];
244   u32x w2_t[4];
245   u32x w3_t[4];
246
247   w0_t[0] = salt_buf0[0];
248   w0_t[1] = salt_buf0[1];
249   w0_t[2] = salt_buf0[2];
250   w0_t[3] = salt_buf0[3];
251   w1_t[0] = salt_buf1[0];
252   w1_t[1] = salt_buf1[1];
253   w1_t[2] = salt_buf1[2];
254   w1_t[3] = salt_buf1[3];
255   w2_t[0] = salt_buf2[0];
256   w2_t[1] = salt_buf2[1];
257   w2_t[2] = salt_buf2[2];
258   w2_t[3] = salt_buf2[3];
259   w3_t[0] = salt_buf3[0];
260   w3_t[1] = salt_buf3[1];
261   w3_t[2] = salt_buf3[2];
262   w3_t[3] = salt_buf3[3];
263
264   u32x ipad[4];
265   u32x opad[4];
266
267   hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
268
269   /**
270    * loop
271    */
272
273   u32 w0l = w0[0];
274
275   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
276   {
277     const u32x w0r = ix_create_bft (bfs_buf, il_pos);
278
279     const u32x w0lr = w0l | w0r;
280
281     w0_t[0] = w0lr;
282     w0_t[1] = w0[1];
283     w0_t[2] = w0[2];
284     w0_t[3] = w0[3];
285     w1_t[0] = w1[0];
286     w1_t[1] = w1[1];
287     w1_t[2] = w1[2];
288     w1_t[3] = w1[3];
289
290     u32x out_len = mangle(w0_t, w1_t, pw_len);
291
292     append_0x80_2x4_VV (w0_t, w1_t, out_len);
293
294     w2_t[0] = 0;
295     w2_t[1] = 0;
296     w2_t[2] = 0;
297     w2_t[3] = 0;
298     w3_t[0] = 0;
299     w3_t[1] = 0;
300     w3_t[2] = (64 + out_len) * 8;
301     w3_t[3] = 0;
302
303     u32x digest[4];
304
305     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
306
307     COMPARE_M_SIMD (digest[0], digest[3], digest[2], digest[1]);
308   }
309 }
310
311 void m00060s (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], const u32 pw_len, __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
312 {
313   /**
314    * modifier
315    */
316
317   const u32 gid = get_global_id (0);
318   const u32 lid = get_local_id (0);
319
320   /**
321    * salt
322    */
323
324   u32 salt_buf0[4];
325   u32 salt_buf1[4];
326   u32 salt_buf2[4];
327   u32 salt_buf3[4];
328
329   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
330   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
331   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
332   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
333   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
334   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
335   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
336   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
337   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
338   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
339   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
340   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
341   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
342   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
343   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
344   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
345
346   const u32 salt_len = salt_bufs[salt_pos].salt_len;
347
348   /**
349    * pads
350    */
351
352   u32x w0_t[4];
353   u32x w1_t[4];
354   u32x w2_t[4];
355   u32x w3_t[4];
356
357   w0_t[0] = salt_buf0[0];
358   w0_t[1] = salt_buf0[1];
359   w0_t[2] = salt_buf0[2];
360   w0_t[3] = salt_buf0[3];
361   w1_t[0] = salt_buf1[0];
362   w1_t[1] = salt_buf1[1];
363   w1_t[2] = salt_buf1[2];
364   w1_t[3] = salt_buf1[3];
365   w2_t[0] = salt_buf2[0];
366   w2_t[1] = salt_buf2[1];
367   w2_t[2] = salt_buf2[2];
368   w2_t[3] = salt_buf2[3];
369   w3_t[0] = salt_buf3[0];
370   w3_t[1] = salt_buf3[1];
371   w3_t[2] = salt_buf3[2];
372   w3_t[3] = salt_buf3[3];
373
374   u32x ipad[4];
375   u32x opad[4];
376
377   hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
378
379   /**
380    * digest
381    */
382
383   const u32 search[4] =
384   {
385     digests_buf[digests_offset].digest_buf[DGST_R0],
386     digests_buf[digests_offset].digest_buf[DGST_R1],
387     digests_buf[digests_offset].digest_buf[DGST_R2],
388     digests_buf[digests_offset].digest_buf[DGST_R3]
389   };
390
391   /**
392    * loop
393    */
394
395   u32 w0l = w0[0];
396
397   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
398   {
399     const u32x w0r = ix_create_bft (bfs_buf, il_pos);
400
401     const u32x w0lr = w0l | w0r;
402
403     w0_t[0] = w0lr;
404     w0_t[1] = w0[1];
405     w0_t[2] = w0[2];
406     w0_t[3] = w0[3];
407     w1_t[0] = w1[0];
408     w1_t[1] = w1[1];
409     w1_t[2] = w1[2];
410     w1_t[3] = w1[3];
411
412     u32x out_len = mangle(w0_t, w1_t, pw_len);
413
414     append_0x80_2x4_VV (w0_t, w1_t, out_len);
415
416     w2_t[0] = 0;
417     w2_t[1] = 0;
418     w2_t[2] = 0;
419     w2_t[3] = 0;
420     w3_t[0] = 0;
421     w3_t[1] = 0;
422     w3_t[2] = (64 + out_len) * 8;
423     w3_t[3] = 0;
424
425     u32x digest[4];
426
427     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
428
429     COMPARE_S_SIMD (digest[0], digest[3], digest[2], digest[1]);
430   }
431 }
432
433 __kernel void m00060_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
434 {
435   /**
436    * base
437    */
438
439   const u32 gid = get_global_id (0);
440
441   if (gid >= gid_max) return;
442
443   u32 w0[4];
444
445   w0[0] = pws[gid].i[ 0];
446   w0[1] = pws[gid].i[ 1];
447   w0[2] = pws[gid].i[ 2];
448   w0[3] = pws[gid].i[ 3];
449
450   u32 w1[4];
451
452   w1[0] = 0;
453   w1[1] = 0;
454   w1[2] = 0;
455   w1[3] = 0;
456
457   u32 w2[4];
458
459   w2[0] = 0;
460   w2[1] = 0;
461   w2[2] = 0;
462   w2[3] = 0;
463
464   u32 w3[4];
465
466   w3[0] = 0;
467   w3[1] = 0;
468   w3[2] = 0;
469   w3[3] = 0;
470
471   const u32 pw_len = pws[gid].pw_len;
472
473   /**
474    * main
475    */
476
477   m00060m (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_scryptV0_buf, d_scryptV1_buf, d_scryptV2_buf, d_scryptV3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, il_cnt, digests_cnt, digests_offset);
478 }
479
480 __kernel void m00060_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
481 {
482   /**
483    * base
484    */
485
486   const u32 gid = get_global_id (0);
487
488   if (gid >= gid_max) return;
489
490   u32 w0[4];
491
492   w0[0] = pws[gid].i[ 0];
493   w0[1] = pws[gid].i[ 1];
494   w0[2] = pws[gid].i[ 2];
495   w0[3] = pws[gid].i[ 3];
496
497   u32 w1[4];
498
499   w1[0] = pws[gid].i[ 4];
500   w1[1] = pws[gid].i[ 5];
501   w1[2] = pws[gid].i[ 6];
502   w1[3] = pws[gid].i[ 7];
503
504   u32 w2[4];
505
506   w2[0] = 0;
507   w2[1] = 0;
508   w2[2] = 0;
509   w2[3] = 0;
510
511   u32 w3[4];
512
513   w3[0] = 0;
514   w3[1] = 0;
515   w3[2] = 0;
516   w3[3] = 0;
517
518   const u32 pw_len = pws[gid].pw_len;
519
520   /**
521    * main
522    */
523
524   m00060m (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_scryptV0_buf, d_scryptV1_buf, d_scryptV2_buf, d_scryptV3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, il_cnt, digests_cnt, digests_offset);
525 }
526
527 __kernel void m00060_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
528 {
529   /**
530    * base
531    */
532
533   const u32 gid = get_global_id (0);
534
535   if (gid >= gid_max) return;
536
537   u32 w0[4];
538
539   w0[0] = pws[gid].i[ 0];
540   w0[1] = pws[gid].i[ 1];
541   w0[2] = pws[gid].i[ 2];
542   w0[3] = pws[gid].i[ 3];
543
544   u32 w1[4];
545
546   w1[0] = pws[gid].i[ 4];
547   w1[1] = pws[gid].i[ 5];
548   w1[2] = pws[gid].i[ 6];
549   w1[3] = pws[gid].i[ 7];
550
551   u32 w2[4];
552
553   w2[0] = pws[gid].i[ 8];
554   w2[1] = pws[gid].i[ 9];
555   w2[2] = pws[gid].i[10];
556   w2[3] = pws[gid].i[11];
557
558   u32 w3[4];
559
560   w3[0] = pws[gid].i[12];
561   w3[1] = pws[gid].i[13];
562   w3[2] = 0;
563   w3[3] = 0;
564
565   const u32 pw_len = pws[gid].pw_len;
566
567   /**
568    * main
569    */
570
571   m00060m (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_scryptV0_buf, d_scryptV1_buf, d_scryptV2_buf, d_scryptV3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, il_cnt, digests_cnt, digests_offset);
572 }
573
574 __kernel void m00060_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
575 {
576   /**
577    * base
578    */
579
580   const u32 gid = get_global_id (0);
581
582   if (gid >= gid_max) return;
583
584   u32 w0[4];
585
586   w0[0] = pws[gid].i[ 0];
587   w0[1] = pws[gid].i[ 1];
588   w0[2] = pws[gid].i[ 2];
589   w0[3] = pws[gid].i[ 3];
590
591   u32 w1[4];
592
593   w1[0] = 0;
594   w1[1] = 0;
595   w1[2] = 0;
596   w1[3] = 0;
597
598   u32 w2[4];
599
600   w2[0] = 0;
601   w2[1] = 0;
602   w2[2] = 0;
603   w2[3] = 0;
604
605   u32 w3[4];
606
607   w3[0] = 0;
608   w3[1] = 0;
609   w3[2] = 0;
610   w3[3] = 0;
611
612   const u32 pw_len = pws[gid].pw_len;
613
614   /**
615    * main
616    */
617
618   m00060s (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_scryptV0_buf, d_scryptV1_buf, d_scryptV2_buf, d_scryptV3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, il_cnt, digests_cnt, digests_offset);
619 }
620
621 __kernel void m00060_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
622 {
623   /**
624    * base
625    */
626
627   const u32 gid = get_global_id (0);
628
629   if (gid >= gid_max) return;
630
631   u32 w0[4];
632
633   w0[0] = pws[gid].i[ 0];
634   w0[1] = pws[gid].i[ 1];
635   w0[2] = pws[gid].i[ 2];
636   w0[3] = pws[gid].i[ 3];
637
638   u32 w1[4];
639
640   w1[0] = pws[gid].i[ 4];
641   w1[1] = pws[gid].i[ 5];
642   w1[2] = pws[gid].i[ 6];
643   w1[3] = pws[gid].i[ 7];
644
645   u32 w2[4];
646
647   w2[0] = 0;
648   w2[1] = 0;
649   w2[2] = 0;
650   w2[3] = 0;
651
652   u32 w3[4];
653
654   w3[0] = 0;
655   w3[1] = 0;
656   w3[2] = 0;
657   w3[3] = 0;
658
659   const u32 pw_len = pws[gid].pw_len;
660
661   /**
662    * main
663    */
664
665   m00060s (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_scryptV0_buf, d_scryptV1_buf, d_scryptV2_buf, d_scryptV3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, il_cnt, digests_cnt, digests_offset);
666 }
667
668 __kernel void m00060_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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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)
669 {
670   /**
671    * base
672    */
673
674   const u32 gid = get_global_id (0);
675
676   if (gid >= gid_max) return;
677
678   u32 w0[4];
679
680   w0[0] = pws[gid].i[ 0];
681   w0[1] = pws[gid].i[ 1];
682   w0[2] = pws[gid].i[ 2];
683   w0[3] = pws[gid].i[ 3];
684
685   u32 w1[4];
686
687   w1[0] = pws[gid].i[ 4];
688   w1[1] = pws[gid].i[ 5];
689   w1[2] = pws[gid].i[ 6];
690   w1[3] = pws[gid].i[ 7];
691
692   u32 w2[4];
693
694   w2[0] = pws[gid].i[ 8];
695   w2[1] = pws[gid].i[ 9];
696   w2[2] = pws[gid].i[10];
697   w2[3] = pws[gid].i[11];
698
699   u32 w3[4];
700
701   w3[0] = pws[gid].i[12];
702   w3[1] = pws[gid].i[13];
703   w3[2] = 0;
704   w3[3] = 0;
705
706   const u32 pw_len = pws[gid].pw_len;
707
708   /**
709    * main
710    */
711
712   m00060s (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_scryptV0_buf, d_scryptV1_buf, d_scryptV2_buf, d_scryptV3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, il_cnt, digests_cnt, digests_offset);
713 }