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