Initial commit
[hashcat.git] / amd / m05100_a0.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5H_
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 1
25 #define DGST_R2 2
26 #define DGST_R3 3
27
28 #include "include/kernel_functions.c"
29 #include "types_amd.c"
30 #include "common_amd.c"
31 #include "include/rp_gpu.h"
32 #include "rp_amd.c"
33
34 #ifdef  VECT_SIZE1
35 #define VECT_COMPARE_S "check_single_vect1_comp4.c"
36 #define VECT_COMPARE_M "check_multi_vect1_comp4.c"
37 #endif
38
39 #ifdef  VECT_SIZE4
40 #define VECT_COMPARE_S "check_single_vect4_comp4.c"
41 #define VECT_COMPARE_M "check_multi_vect4_comp4.c"
42 #endif
43
44 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
45 {
46   /**
47    * modifier
48    */
49
50   const u32 lid = get_local_id (0);
51
52   /**
53    * base
54    */
55
56   const u32 gid = get_global_id (0);
57
58   if (gid >= gid_max) return;
59
60   u32x pw_buf0[4];
61
62   pw_buf0[0] = pws[gid].i[ 0];
63   pw_buf0[1] = pws[gid].i[ 1];
64   pw_buf0[2] = pws[gid].i[ 2];
65   pw_buf0[3] = pws[gid].i[ 3];
66
67   u32x pw_buf1[4];
68
69   pw_buf1[0] = pws[gid].i[ 4];
70   pw_buf1[1] = pws[gid].i[ 5];
71   pw_buf1[2] = pws[gid].i[ 6];
72   pw_buf1[3] = pws[gid].i[ 7];
73
74   const u32 pw_len = pws[gid].pw_len;
75
76   /**
77    * loop
78    */
79
80   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
81   {
82     u32x w0[4];
83
84     w0[0] = pw_buf0[0];
85     w0[1] = pw_buf0[1];
86     w0[2] = pw_buf0[2];
87     w0[3] = pw_buf0[3];
88
89     u32x w1[4];
90
91     w1[0] = pw_buf1[0];
92     w1[1] = pw_buf1[1];
93     w1[2] = pw_buf1[2];
94     w1[3] = pw_buf1[3];
95
96     u32x w2[4];
97
98     w2[0] = 0;
99     w2[1] = 0;
100     w2[2] = 0;
101     w2[3] = 0;
102
103     u32x w3[4];
104
105     w3[0] = 0;
106     w3[1] = 0;
107     w3[2] = 0;
108     w3[3] = 0;
109
110     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
111
112     append_0x80_2 (w0, w1, out_len);
113
114     w3[2] = out_len * 8;
115
116     u32x a = MD5M_A;
117     u32x b = MD5M_B;
118     u32x c = MD5M_C;
119     u32x d = MD5M_D;
120
121     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
122     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
123     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
124     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
125     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
126     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
127     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
128     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
129     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
130     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
131     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
132     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
133     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
134     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
135     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
136     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
137
138     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
139     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
140     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
141     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
142     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
143     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
144     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
145     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
146     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
147     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
148     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
149     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
150     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
151     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
152     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
153     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
154
155     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
156     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
157     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
158     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
159     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
160     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
161     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
162     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
163     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
164     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
165     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
166     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
167     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
168     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
169     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
170     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
171
172     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
173     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
174     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
175     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
176     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
177     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
178     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
179     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
180     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
181     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
182     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
183     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
184     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
185     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
186     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
187     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
188
189     a += MD5M_A;
190     b += MD5M_B;
191     c += MD5M_C;
192     d += MD5M_D;
193
194     {
195       const u32x r0 = a;
196       const u32x r1 = b;
197       const u32x r2 = 0;
198       const u32x r3 = 0;
199
200       #include VECT_COMPARE_M
201     }
202
203     {
204       const u32x r0 = b;
205       const u32x r1 = c;
206       const u32x r2 = 0;
207       const u32x r3 = 0;
208
209       #include VECT_COMPARE_M
210     }
211
212     {
213       const u32x r0 = c;
214       const u32x r1 = d;
215       const u32x r2 = 0;
216       const u32x r3 = 0;
217
218       #include VECT_COMPARE_M
219     }
220   }
221 }
222
223 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
224 {
225 }
226
227 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
228 {
229 }
230
231 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
232 {
233   /**
234    * modifier
235    */
236
237   const u32 lid = get_local_id (0);
238
239   /**
240    * base
241    */
242
243   const u32 gid = get_global_id (0);
244
245   if (gid >= gid_max) return;
246
247   u32x pw_buf0[4];
248
249   pw_buf0[0] = pws[gid].i[ 0];
250   pw_buf0[1] = pws[gid].i[ 1];
251   pw_buf0[2] = pws[gid].i[ 2];
252   pw_buf0[3] = pws[gid].i[ 3];
253
254   u32x pw_buf1[4];
255
256   pw_buf1[0] = pws[gid].i[ 4];
257   pw_buf1[1] = pws[gid].i[ 5];
258   pw_buf1[2] = pws[gid].i[ 6];
259   pw_buf1[3] = pws[gid].i[ 7];
260
261   const u32 pw_len = pws[gid].pw_len;
262
263   /**
264    * digest
265    */
266
267   const u32 search[4] =
268   {
269     digests_buf[digests_offset].digest_buf[DGST_R0],
270     digests_buf[digests_offset].digest_buf[DGST_R1],
271     digests_buf[digests_offset].digest_buf[DGST_R2],
272     digests_buf[digests_offset].digest_buf[DGST_R3]
273   };
274
275   /**
276    * loop
277    */
278
279   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
280   {
281     u32x w0[4];
282
283     w0[0] = pw_buf0[0];
284     w0[1] = pw_buf0[1];
285     w0[2] = pw_buf0[2];
286     w0[3] = pw_buf0[3];
287
288     u32x w1[4];
289
290     w1[0] = pw_buf1[0];
291     w1[1] = pw_buf1[1];
292     w1[2] = pw_buf1[2];
293     w1[3] = pw_buf1[3];
294
295     u32x w2[4];
296
297     w2[0] = 0;
298     w2[1] = 0;
299     w2[2] = 0;
300     w2[3] = 0;
301
302     u32x w3[4];
303
304     w3[0] = 0;
305     w3[1] = 0;
306     w3[2] = 0;
307     w3[3] = 0;
308
309     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
310
311     append_0x80_2 (w0, w1, out_len);
312
313     w3[2] = out_len * 8;
314
315     u32x a = MD5M_A;
316     u32x b = MD5M_B;
317     u32x c = MD5M_C;
318     u32x d = MD5M_D;
319
320     MD5_STEP (MD5_Fo, a, b, c, d, w0[0], MD5C00, MD5S00);
321     MD5_STEP (MD5_Fo, d, a, b, c, w0[1], MD5C01, MD5S01);
322     MD5_STEP (MD5_Fo, c, d, a, b, w0[2], MD5C02, MD5S02);
323     MD5_STEP (MD5_Fo, b, c, d, a, w0[3], MD5C03, MD5S03);
324     MD5_STEP (MD5_Fo, a, b, c, d, w1[0], MD5C04, MD5S00);
325     MD5_STEP (MD5_Fo, d, a, b, c, w1[1], MD5C05, MD5S01);
326     MD5_STEP (MD5_Fo, c, d, a, b, w1[2], MD5C06, MD5S02);
327     MD5_STEP (MD5_Fo, b, c, d, a, w1[3], MD5C07, MD5S03);
328     MD5_STEP (MD5_Fo, a, b, c, d, w2[0], MD5C08, MD5S00);
329     MD5_STEP (MD5_Fo, d, a, b, c, w2[1], MD5C09, MD5S01);
330     MD5_STEP (MD5_Fo, c, d, a, b, w2[2], MD5C0a, MD5S02);
331     MD5_STEP (MD5_Fo, b, c, d, a, w2[3], MD5C0b, MD5S03);
332     MD5_STEP (MD5_Fo, a, b, c, d, w3[0], MD5C0c, MD5S00);
333     MD5_STEP (MD5_Fo, d, a, b, c, w3[1], MD5C0d, MD5S01);
334     MD5_STEP (MD5_Fo, c, d, a, b, w3[2], MD5C0e, MD5S02);
335     MD5_STEP (MD5_Fo, b, c, d, a, w3[3], MD5C0f, MD5S03);
336
337     MD5_STEP (MD5_Go, a, b, c, d, w0[1], MD5C10, MD5S10);
338     MD5_STEP (MD5_Go, d, a, b, c, w1[2], MD5C11, MD5S11);
339     MD5_STEP (MD5_Go, c, d, a, b, w2[3], MD5C12, MD5S12);
340     MD5_STEP (MD5_Go, b, c, d, a, w0[0], MD5C13, MD5S13);
341     MD5_STEP (MD5_Go, a, b, c, d, w1[1], MD5C14, MD5S10);
342     MD5_STEP (MD5_Go, d, a, b, c, w2[2], MD5C15, MD5S11);
343     MD5_STEP (MD5_Go, c, d, a, b, w3[3], MD5C16, MD5S12);
344     MD5_STEP (MD5_Go, b, c, d, a, w1[0], MD5C17, MD5S13);
345     MD5_STEP (MD5_Go, a, b, c, d, w2[1], MD5C18, MD5S10);
346     MD5_STEP (MD5_Go, d, a, b, c, w3[2], MD5C19, MD5S11);
347     MD5_STEP (MD5_Go, c, d, a, b, w0[3], MD5C1a, MD5S12);
348     MD5_STEP (MD5_Go, b, c, d, a, w2[0], MD5C1b, MD5S13);
349     MD5_STEP (MD5_Go, a, b, c, d, w3[1], MD5C1c, MD5S10);
350     MD5_STEP (MD5_Go, d, a, b, c, w0[2], MD5C1d, MD5S11);
351     MD5_STEP (MD5_Go, c, d, a, b, w1[3], MD5C1e, MD5S12);
352     MD5_STEP (MD5_Go, b, c, d, a, w3[0], MD5C1f, MD5S13);
353
354     MD5_STEP (MD5_H , a, b, c, d, w1[1], MD5C20, MD5S20);
355     MD5_STEP (MD5_H , d, a, b, c, w2[0], MD5C21, MD5S21);
356     MD5_STEP (MD5_H , c, d, a, b, w2[3], MD5C22, MD5S22);
357     MD5_STEP (MD5_H , b, c, d, a, w3[2], MD5C23, MD5S23);
358     MD5_STEP (MD5_H , a, b, c, d, w0[1], MD5C24, MD5S20);
359     MD5_STEP (MD5_H , d, a, b, c, w1[0], MD5C25, MD5S21);
360     MD5_STEP (MD5_H , c, d, a, b, w1[3], MD5C26, MD5S22);
361     MD5_STEP (MD5_H , b, c, d, a, w2[2], MD5C27, MD5S23);
362     MD5_STEP (MD5_H , a, b, c, d, w3[1], MD5C28, MD5S20);
363     MD5_STEP (MD5_H , d, a, b, c, w0[0], MD5C29, MD5S21);
364     MD5_STEP (MD5_H , c, d, a, b, w0[3], MD5C2a, MD5S22);
365     MD5_STEP (MD5_H , b, c, d, a, w1[2], MD5C2b, MD5S23);
366     MD5_STEP (MD5_H , a, b, c, d, w2[1], MD5C2c, MD5S20);
367     MD5_STEP (MD5_H , d, a, b, c, w3[0], MD5C2d, MD5S21);
368     MD5_STEP (MD5_H , c, d, a, b, w3[3], MD5C2e, MD5S22);
369     MD5_STEP (MD5_H , b, c, d, a, w0[2], MD5C2f, MD5S23);
370
371     MD5_STEP (MD5_I , a, b, c, d, w0[0], MD5C30, MD5S30);
372     MD5_STEP (MD5_I , d, a, b, c, w1[3], MD5C31, MD5S31);
373     MD5_STEP (MD5_I , c, d, a, b, w3[2], MD5C32, MD5S32);
374     MD5_STEP (MD5_I , b, c, d, a, w1[1], MD5C33, MD5S33);
375     MD5_STEP (MD5_I , a, b, c, d, w3[0], MD5C34, MD5S30);
376     MD5_STEP (MD5_I , d, a, b, c, w0[3], MD5C35, MD5S31);
377     MD5_STEP (MD5_I , c, d, a, b, w2[2], MD5C36, MD5S32);
378     MD5_STEP (MD5_I , b, c, d, a, w0[1], MD5C37, MD5S33);
379     MD5_STEP (MD5_I , a, b, c, d, w2[0], MD5C38, MD5S30);
380     MD5_STEP (MD5_I , d, a, b, c, w3[3], MD5C39, MD5S31);
381     MD5_STEP (MD5_I , c, d, a, b, w1[2], MD5C3a, MD5S32);
382     MD5_STEP (MD5_I , b, c, d, a, w3[1], MD5C3b, MD5S33);
383     MD5_STEP (MD5_I , a, b, c, d, w1[0], MD5C3c, MD5S30);
384     MD5_STEP (MD5_I , d, a, b, c, w2[3], MD5C3d, MD5S31);
385     MD5_STEP (MD5_I , c, d, a, b, w0[2], MD5C3e, MD5S32);
386     MD5_STEP (MD5_I , b, c, d, a, w2[1], MD5C3f, MD5S33);
387
388     a += MD5M_A;
389     b += MD5M_B;
390     c += MD5M_C;
391     d += MD5M_D;
392
393     {
394       const u32x r0 = a;
395       const u32x r1 = b;
396       const u32x r2 = 0;
397       const u32x r3 = 0;
398
399       #include VECT_COMPARE_S
400     }
401
402     {
403       const u32x r0 = b;
404       const u32x r1 = c;
405       const u32x r2 = 0;
406       const u32x r3 = 0;
407
408       #include VECT_COMPARE_S
409     }
410
411     {
412       const u32x r0 = c;
413       const u32x r1 = d;
414       const u32x r2 = 0;
415       const u32x r3 = 0;
416
417       #include VECT_COMPARE_S
418     }
419   }
420 }
421
422 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
423 {
424 }
425
426 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05100_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)
427 {
428 }