Add mangle to mode 60 attack 3
[hashcat.git] / OpenCL / m00060_a3.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[0] = w0lr;
282         
283         u32x out_len = mangle(w0, w1, pw_len);
284
285     append_0x80_2x4_VV (w0, w1, out_len);
286
287
288     w0_t[0] = w0[0];
289     w0_t[1] = w0[1];
290     w0_t[2] = w0[2];
291     w0_t[3] = w0[3];
292     w1_t[0] = w1[0];
293     w1_t[1] = w1[1];
294     w1_t[2] = w1[2];
295     w1_t[3] = w1[3];
296     w2_t[0] = 0;
297     w2_t[1] = 0;
298     w2_t[2] = 0;
299     w2_t[3] = 0;
300     w3_t[0] = 0;
301     w3_t[1] = 0;
302     w3_t[2] = (64 + out_len) * 8;
303     w3_t[3] = 0;
304
305     u32x digest[4];
306
307     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
308
309     COMPARE_M_SIMD (digest[0], digest[3], digest[2], digest[1]);
310   }
311 }
312
313 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)
314 {
315   /**
316    * modifier
317    */
318
319   const u32 gid = get_global_id (0);
320   const u32 lid = get_local_id (0);
321
322   /**
323    * salt
324    */
325
326   u32 salt_buf0[4];
327   u32 salt_buf1[4];
328   u32 salt_buf2[4];
329   u32 salt_buf3[4];
330
331   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
332   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
333   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
334   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
335   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
336   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
337   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
338   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
339   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
340   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
341   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
342   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
343   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
344   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
345   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
346   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
347
348   const u32 salt_len = salt_bufs[salt_pos].salt_len;
349
350   /**
351    * pads
352    */
353
354   u32x w0_t[4];
355   u32x w1_t[4];
356   u32x w2_t[4];
357   u32x w3_t[4];
358
359   w0_t[0] = salt_buf0[0];
360   w0_t[1] = salt_buf0[1];
361   w0_t[2] = salt_buf0[2];
362   w0_t[3] = salt_buf0[3];
363   w1_t[0] = salt_buf1[0];
364   w1_t[1] = salt_buf1[1];
365   w1_t[2] = salt_buf1[2];
366   w1_t[3] = salt_buf1[3];
367   w2_t[0] = salt_buf2[0];
368   w2_t[1] = salt_buf2[1];
369   w2_t[2] = salt_buf2[2];
370   w2_t[3] = salt_buf2[3];
371   w3_t[0] = salt_buf3[0];
372   w3_t[1] = salt_buf3[1];
373   w3_t[2] = salt_buf3[2];
374   w3_t[3] = salt_buf3[3];
375
376   u32x ipad[4];
377   u32x opad[4];
378
379   hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
380
381   /**
382    * digest
383    */
384
385   const u32 search[4] =
386   {
387     digests_buf[digests_offset].digest_buf[DGST_R0],
388     digests_buf[digests_offset].digest_buf[DGST_R1],
389     digests_buf[digests_offset].digest_buf[DGST_R2],
390     digests_buf[digests_offset].digest_buf[DGST_R3]
391   };
392
393   /**
394    * loop
395    */
396
397   u32 w0l = w0[0];
398
399   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
400   {
401     const u32x w0r = ix_create_bft (bfs_buf, il_pos);
402
403     const u32x w0lr = w0l | w0r;
404
405     w0_t[0] = w0lr;
406     w0_t[1] = w0[1];
407     w0_t[2] = w0[2];
408     w0_t[3] = w0[3];
409     w1_t[0] = w1[0];
410     w1_t[1] = w1[1];
411     w1_t[2] = w1[2];
412     w1_t[3] = w1[3];
413     w2_t[0] = w2[0];
414     w2_t[1] = w2[1];
415     w2_t[2] = w2[2];
416     w2_t[3] = w2[3];
417     w3_t[0] = w3[0];
418     w3_t[1] = w3[1];
419     w3_t[2] = (64 + pw_len) * 8;
420     w3_t[3] = 0;
421
422     u32x digest[4];
423
424     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
425
426     COMPARE_S_SIMD (digest[0], digest[3], digest[2], digest[1]);
427   }
428 }
429
430 __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)
431 {
432   /**
433    * base
434    */
435
436   const u32 gid = get_global_id (0);
437
438   if (gid >= gid_max) return;
439
440   u32 w0[4];
441
442   w0[0] = pws[gid].i[ 0];
443   w0[1] = pws[gid].i[ 1];
444   w0[2] = pws[gid].i[ 2];
445   w0[3] = pws[gid].i[ 3];
446
447   u32 w1[4];
448
449   w1[0] = 0;
450   w1[1] = 0;
451   w1[2] = 0;
452   w1[3] = 0;
453
454   u32 w2[4];
455
456   w2[0] = 0;
457   w2[1] = 0;
458   w2[2] = 0;
459   w2[3] = 0;
460
461   u32 w3[4];
462
463   w3[0] = 0;
464   w3[1] = 0;
465   w3[2] = 0;
466   w3[3] = 0;
467
468   const u32 pw_len = pws[gid].pw_len;
469
470   /**
471    * main
472    */
473
474   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);
475 }
476
477 __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)
478 {
479   /**
480    * base
481    */
482
483   const u32 gid = get_global_id (0);
484
485   if (gid >= gid_max) return;
486
487   u32 w0[4];
488
489   w0[0] = pws[gid].i[ 0];
490   w0[1] = pws[gid].i[ 1];
491   w0[2] = pws[gid].i[ 2];
492   w0[3] = pws[gid].i[ 3];
493
494   u32 w1[4];
495
496   w1[0] = pws[gid].i[ 4];
497   w1[1] = pws[gid].i[ 5];
498   w1[2] = pws[gid].i[ 6];
499   w1[3] = pws[gid].i[ 7];
500
501   u32 w2[4];
502
503   w2[0] = 0;
504   w2[1] = 0;
505   w2[2] = 0;
506   w2[3] = 0;
507
508   u32 w3[4];
509
510   w3[0] = 0;
511   w3[1] = 0;
512   w3[2] = 0;
513   w3[3] = 0;
514
515   const u32 pw_len = pws[gid].pw_len;
516
517   /**
518    * main
519    */
520
521   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);
522 }
523
524 __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)
525 {
526   /**
527    * base
528    */
529
530   const u32 gid = get_global_id (0);
531
532   if (gid >= gid_max) return;
533
534   u32 w0[4];
535
536   w0[0] = pws[gid].i[ 0];
537   w0[1] = pws[gid].i[ 1];
538   w0[2] = pws[gid].i[ 2];
539   w0[3] = pws[gid].i[ 3];
540
541   u32 w1[4];
542
543   w1[0] = pws[gid].i[ 4];
544   w1[1] = pws[gid].i[ 5];
545   w1[2] = pws[gid].i[ 6];
546   w1[3] = pws[gid].i[ 7];
547
548   u32 w2[4];
549
550   w2[0] = pws[gid].i[ 8];
551   w2[1] = pws[gid].i[ 9];
552   w2[2] = pws[gid].i[10];
553   w2[3] = pws[gid].i[11];
554
555   u32 w3[4];
556
557   w3[0] = pws[gid].i[12];
558   w3[1] = pws[gid].i[13];
559   w3[2] = 0;
560   w3[3] = 0;
561
562   const u32 pw_len = pws[gid].pw_len;
563
564   /**
565    * main
566    */
567
568   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);
569 }
570
571 __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)
572 {
573   /**
574    * base
575    */
576
577   const u32 gid = get_global_id (0);
578
579   if (gid >= gid_max) return;
580
581   u32 w0[4];
582
583   w0[0] = pws[gid].i[ 0];
584   w0[1] = pws[gid].i[ 1];
585   w0[2] = pws[gid].i[ 2];
586   w0[3] = pws[gid].i[ 3];
587
588   u32 w1[4];
589
590   w1[0] = 0;
591   w1[1] = 0;
592   w1[2] = 0;
593   w1[3] = 0;
594
595   u32 w2[4];
596
597   w2[0] = 0;
598   w2[1] = 0;
599   w2[2] = 0;
600   w2[3] = 0;
601
602   u32 w3[4];
603
604   w3[0] = 0;
605   w3[1] = 0;
606   w3[2] = 0;
607   w3[3] = 0;
608
609   const u32 pw_len = pws[gid].pw_len;
610
611   /**
612    * main
613    */
614
615   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);
616 }
617
618 __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)
619 {
620   /**
621    * base
622    */
623
624   const u32 gid = get_global_id (0);
625
626   if (gid >= gid_max) return;
627
628   u32 w0[4];
629
630   w0[0] = pws[gid].i[ 0];
631   w0[1] = pws[gid].i[ 1];
632   w0[2] = pws[gid].i[ 2];
633   w0[3] = pws[gid].i[ 3];
634
635   u32 w1[4];
636
637   w1[0] = pws[gid].i[ 4];
638   w1[1] = pws[gid].i[ 5];
639   w1[2] = pws[gid].i[ 6];
640   w1[3] = pws[gid].i[ 7];
641
642   u32 w2[4];
643
644   w2[0] = 0;
645   w2[1] = 0;
646   w2[2] = 0;
647   w2[3] = 0;
648
649   u32 w3[4];
650
651   w3[0] = 0;
652   w3[1] = 0;
653   w3[2] = 0;
654   w3[3] = 0;
655
656   const u32 pw_len = pws[gid].pw_len;
657
658   /**
659    * main
660    */
661
662   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);
663 }
664
665 __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)
666 {
667   /**
668    * base
669    */
670
671   const u32 gid = get_global_id (0);
672
673   if (gid >= gid_max) return;
674
675   u32 w0[4];
676
677   w0[0] = pws[gid].i[ 0];
678   w0[1] = pws[gid].i[ 1];
679   w0[2] = pws[gid].i[ 2];
680   w0[3] = pws[gid].i[ 3];
681
682   u32 w1[4];
683
684   w1[0] = pws[gid].i[ 4];
685   w1[1] = pws[gid].i[ 5];
686   w1[2] = pws[gid].i[ 6];
687   w1[3] = pws[gid].i[ 7];
688
689   u32 w2[4];
690
691   w2[0] = pws[gid].i[ 8];
692   w2[1] = pws[gid].i[ 9];
693   w2[2] = pws[gid].i[10];
694   w2[3] = pws[gid].i[11];
695
696   u32 w3[4];
697
698   w3[0] = pws[gid].i[12];
699   w3[1] = pws[gid].i[13];
700   w3[2] = 0;
701   w3[3] = 0;
702
703   const u32 pw_len = pws[gid].pw_len;
704
705   /**
706    * main
707    */
708
709   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);
710 }