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