Initial commit
[hashcat.git] / amd / m02400_a1.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 #ifdef  VLIW1
12 #define VECT_SIZE1
13 #endif
14
15 #ifdef  VLIW4
16 #define VECT_SIZE4
17 #endif
18
19 #ifdef  VLIW5
20 #define VECT_SIZE4
21 #endif
22
23 #define DGST_R0 0
24 #define DGST_R1 3
25 #define DGST_R2 2
26 #define DGST_R3 1
27
28 #include "include/kernel_functions.c"
29 #include "types_amd.c"
30 #include "common_amd.c"
31
32 #ifdef  VECT_SIZE1
33 #define VECT_COMPARE_S "check_single_vect1_comp4.c"
34 #define VECT_COMPARE_M "check_multi_vect1_comp4.c"
35 #endif
36
37 #ifdef  VECT_SIZE2
38 #define VECT_COMPARE_S "check_single_vect2_comp4.c"
39 #define VECT_COMPARE_M "check_multi_vect2_comp4.c"
40 #endif
41
42 #ifdef  VECT_SIZE4
43 #define VECT_COMPARE_S "check_single_vect4_comp4.c"
44 #define VECT_COMPARE_M "check_multi_vect4_comp4.c"
45 #endif
46
47 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
48 {
49   /**
50    * modifier
51    */
52
53   const u32 lid = get_local_id (0);
54
55   /**
56    * base
57    */
58
59   const u32 gid = get_global_id (0);
60
61   if (gid >= gid_max) return;
62
63   u32x wordl0[4];
64
65   wordl0[0] = pws[gid].i[ 0];
66   wordl0[1] = pws[gid].i[ 1];
67   wordl0[2] = pws[gid].i[ 2];
68   wordl0[3] = pws[gid].i[ 3];
69
70   u32x wordl1[4];
71
72   wordl1[0] = pws[gid].i[ 4];
73   wordl1[1] = pws[gid].i[ 5];
74   wordl1[2] = pws[gid].i[ 6];
75   wordl1[3] = pws[gid].i[ 7];
76
77   u32x wordl2[4];
78
79   wordl2[0] = 0;
80   wordl2[1] = 0;
81   wordl2[2] = 0;
82   wordl2[3] = 0;
83
84   u32x wordl3[4];
85
86   wordl3[0] = 0;
87   wordl3[1] = 0;
88   wordl3[2] = 0;
89   wordl3[3] = 0;
90
91   const u32 pw_l_len = pws[gid].pw_len;
92
93   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
94   {
95     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
96   }
97
98   /**
99    * loop
100    */
101
102   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
103   {
104     const u32 pw_r_len = combs_buf[il_pos].pw_len;
105
106     const u32 pw_len = pw_l_len + pw_r_len;
107
108     u32 wordr0[4];
109
110     wordr0[0] = combs_buf[il_pos].i[0];
111     wordr0[1] = combs_buf[il_pos].i[1];
112     wordr0[2] = combs_buf[il_pos].i[2];
113     wordr0[3] = combs_buf[il_pos].i[3];
114
115     u32 wordr1[4];
116
117     wordr1[0] = combs_buf[il_pos].i[4];
118     wordr1[1] = combs_buf[il_pos].i[5];
119     wordr1[2] = combs_buf[il_pos].i[6];
120     wordr1[3] = combs_buf[il_pos].i[7];
121
122     u32 wordr2[4];
123
124     wordr2[0] = 0;
125     wordr2[1] = 0;
126     wordr2[2] = 0;
127     wordr2[3] = 0;
128
129     u32 wordr3[4];
130
131     wordr3[0] = 0;
132     wordr3[1] = 0;
133     wordr3[2] = 0;
134     wordr3[3] = 0;
135
136     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
137     {
138       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
139     }
140
141     u32x w0[4];
142
143     w0[0] = wordl0[0] | wordr0[0];
144     w0[1] = wordl0[1] | wordr0[1];
145     w0[2] = wordl0[2] | wordr0[2];
146     w0[3] = wordl0[3] | wordr0[3];
147
148     u32x w1[4];
149
150     w1[0] = wordl1[0] | wordr1[0];
151     w1[1] = wordl1[1] | wordr1[1];
152     w1[2] = wordl1[2] | wordr1[2];
153     w1[3] = wordl1[3] | wordr1[3];
154
155     u32x w2[4];
156
157     w2[0] = wordl2[0] | wordr2[0];
158     w2[1] = wordl2[1] | wordr2[1];
159     w2[2] = wordl2[2] | wordr2[2];
160     w2[3] = wordl2[3] | wordr2[3];
161
162     u32x w3[4];
163
164     w3[0] = wordl3[0] | wordr3[0];
165     w3[1] = wordl3[1] | wordr3[1];
166     w3[2] = 0;
167     w3[3] = 0;
168
169     truncate_block (w0, pw_len);
170
171     w1[0] = 0x80;
172     w3[2] = 16 * 8;
173
174     u32x tmp2;
175
176     u32x a = MD5M_A;
177     u32x b = MD5M_B;
178     u32x c = MD5M_C;
179     u32x d = MD5M_D;
180
181     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
182     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
183     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
184     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
185     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
186     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
187     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
188     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
189     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
190     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
191     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
192     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
193     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
194     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
195     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
196     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
197
198     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
199     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
200     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
201     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
202     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
203     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
204     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
205     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
206     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
207     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
208     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
209     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
210     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
211     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
212     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
213     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
214
215     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
216     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
217     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
218     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
219     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
220     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
221     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
222     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
223     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
224     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
225     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
226     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
227     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
228     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
229     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
230     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
231
232     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
233     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
234     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
235     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
236     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
237     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
238     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
239     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
240     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
241     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
242     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
243     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
244     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
245     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
246     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
247     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
248
249     a &= 0x00ffffff;
250     d &= 0x00ffffff;
251     c &= 0x00ffffff;
252     b &= 0x00ffffff;
253
254     const u32x r0 = a;
255     const u32x r1 = d;
256     const u32x r2 = c;
257     const u32x r3 = b;
258
259     #include VECT_COMPARE_M
260   }
261 }
262
263 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
264 {
265 }
266
267 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
268 {
269 }
270
271 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
272 {
273   /**
274    * modifier
275    */
276
277   const u32 lid = get_local_id (0);
278
279   /**
280    * base
281    */
282
283   const u32 gid = get_global_id (0);
284
285   if (gid >= gid_max) return;
286
287   u32x wordl0[4];
288
289   wordl0[0] = pws[gid].i[ 0];
290   wordl0[1] = pws[gid].i[ 1];
291   wordl0[2] = pws[gid].i[ 2];
292   wordl0[3] = pws[gid].i[ 3];
293
294   u32x wordl1[4];
295
296   wordl1[0] = pws[gid].i[ 4];
297   wordl1[1] = pws[gid].i[ 5];
298   wordl1[2] = pws[gid].i[ 6];
299   wordl1[3] = pws[gid].i[ 7];
300
301   u32x wordl2[4];
302
303   wordl2[0] = 0;
304   wordl2[1] = 0;
305   wordl2[2] = 0;
306   wordl2[3] = 0;
307
308   u32x wordl3[4];
309
310   wordl3[0] = 0;
311   wordl3[1] = 0;
312   wordl3[2] = 0;
313   wordl3[3] = 0;
314
315   const u32 pw_l_len = pws[gid].pw_len;
316
317   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
318   {
319     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
320   }
321
322   /**
323    * digest
324    */
325
326   const u32 search[4] =
327   {
328     digests_buf[digests_offset].digest_buf[DGST_R0],
329     digests_buf[digests_offset].digest_buf[DGST_R1],
330     digests_buf[digests_offset].digest_buf[DGST_R2],
331     digests_buf[digests_offset].digest_buf[DGST_R3]
332   };
333
334   /**
335    * loop
336    */
337
338   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
339   {
340     const u32 pw_r_len = combs_buf[il_pos].pw_len;
341
342     const u32 pw_len = pw_l_len + pw_r_len;
343
344     u32 wordr0[4];
345
346     wordr0[0] = combs_buf[il_pos].i[0];
347     wordr0[1] = combs_buf[il_pos].i[1];
348     wordr0[2] = combs_buf[il_pos].i[2];
349     wordr0[3] = combs_buf[il_pos].i[3];
350
351     u32 wordr1[4];
352
353     wordr1[0] = combs_buf[il_pos].i[4];
354     wordr1[1] = combs_buf[il_pos].i[5];
355     wordr1[2] = combs_buf[il_pos].i[6];
356     wordr1[3] = combs_buf[il_pos].i[7];
357
358     u32 wordr2[4];
359
360     wordr2[0] = 0;
361     wordr2[1] = 0;
362     wordr2[2] = 0;
363     wordr2[3] = 0;
364
365     u32 wordr3[4];
366
367     wordr3[0] = 0;
368     wordr3[1] = 0;
369     wordr3[2] = 0;
370     wordr3[3] = 0;
371
372     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
373     {
374       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
375     }
376
377     u32x w0[4];
378
379     w0[0] = wordl0[0] | wordr0[0];
380     w0[1] = wordl0[1] | wordr0[1];
381     w0[2] = wordl0[2] | wordr0[2];
382     w0[3] = wordl0[3] | wordr0[3];
383
384     u32x w1[4];
385
386     w1[0] = wordl1[0] | wordr1[0];
387     w1[1] = wordl1[1] | wordr1[1];
388     w1[2] = wordl1[2] | wordr1[2];
389     w1[3] = wordl1[3] | wordr1[3];
390
391     u32x w2[4];
392
393     w2[0] = wordl2[0] | wordr2[0];
394     w2[1] = wordl2[1] | wordr2[1];
395     w2[2] = wordl2[2] | wordr2[2];
396     w2[3] = wordl2[3] | wordr2[3];
397
398     u32x w3[4];
399
400     w3[0] = wordl3[0] | wordr3[0];
401     w3[1] = wordl3[1] | wordr3[1];
402     w3[2] = 0;
403     w3[3] = 0;
404
405     truncate_block (w0, pw_len);
406
407     w1[0] = 0x80;
408     w3[2] = 16 * 8;
409
410     u32x tmp2;
411
412     u32x a = MD5M_A;
413     u32x b = MD5M_B;
414     u32x c = MD5M_C;
415     u32x d = MD5M_D;
416
417     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
418     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
419     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
420     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
421     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
422     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
423     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
424     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
425     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
426     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
427     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
428     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
429     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
430     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
431     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
432     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
433
434     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
435     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
436     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
437     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
438     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
439     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
440     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
441     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
442     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
443     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
444     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
445     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
446     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
447     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
448     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
449     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
450
451     MD5_STEP (MD5_H1, a, b, c, d, w1[1], MD5C20, MD5S20);
452     MD5_STEP (MD5_H2, d, a, b, c, w2[0], MD5C21, MD5S21);
453     MD5_STEP (MD5_H1, c, d, a, b, w2[3], MD5C22, MD5S22);
454     MD5_STEP (MD5_H2, b, c, d, a, w3[2], MD5C23, MD5S23);
455     MD5_STEP (MD5_H1, a, b, c, d, w0[1], MD5C24, MD5S20);
456     MD5_STEP (MD5_H2, d, a, b, c, w1[0], MD5C25, MD5S21);
457     MD5_STEP (MD5_H1, c, d, a, b, w1[3], MD5C26, MD5S22);
458     MD5_STEP (MD5_H2, b, c, d, a, w2[2], MD5C27, MD5S23);
459     MD5_STEP (MD5_H1, a, b, c, d, w3[1], MD5C28, MD5S20);
460     MD5_STEP (MD5_H2, d, a, b, c, w0[0], MD5C29, MD5S21);
461     MD5_STEP (MD5_H1, c, d, a, b, w0[3], MD5C2a, MD5S22);
462     MD5_STEP (MD5_H2, b, c, d, a, w1[2], MD5C2b, MD5S23);
463     MD5_STEP (MD5_H1, a, b, c, d, w2[1], MD5C2c, MD5S20);
464     MD5_STEP (MD5_H2, d, a, b, c, w3[0], MD5C2d, MD5S21);
465     MD5_STEP (MD5_H1, c, d, a, b, w3[3], MD5C2e, MD5S22);
466     MD5_STEP (MD5_H2, b, c, d, a, w0[2], MD5C2f, MD5S23);
467
468     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
469     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
470     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
471     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
472     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
473     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
474     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
475     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
476     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
477     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
478     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
479     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
480     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
481
482     bool q_cond = allx ((a & 0x00ffffff) != search[0]);
483
484     if (q_cond) continue;
485
486     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
487     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
488     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
489
490     a &= 0x00ffffff;
491     d &= 0x00ffffff;
492     c &= 0x00ffffff;
493     b &= 0x00ffffff;
494
495     const u32x r0 = a;
496     const u32x r1 = d;
497     const u32x r2 = c;
498     const u32x r3 = b;
499
500     #include VECT_COMPARE_S
501   }
502 }
503
504 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
505 {
506 }
507
508 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m02400_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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
509 {
510 }