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