Remove MD4/MD5 *H1/*H2 functions and use original H functions. Modern compilers will...
[hashcat.git] / OpenCL / m01000_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD4_
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 "OpenCL/types_ocl.c"
18 #include "OpenCL/common.c"
19
20 #define COMPARE_S "OpenCL/check_single_comp4.c"
21 #define COMPARE_M "OpenCL/check_multi_comp4.c"
22
23 __kernel void m01000_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_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)
24 {
25   /**
26    * modifier
27    */
28
29   const u32 lid = get_local_id (0);
30
31   /**
32    * base
33    */
34
35   const u32 gid = get_global_id (0);
36
37   if (gid >= gid_max) return;
38
39   u32 wordl0[4];
40
41   wordl0[0] = pws[gid].i[ 0];
42   wordl0[1] = pws[gid].i[ 1];
43   wordl0[2] = pws[gid].i[ 2];
44   wordl0[3] = pws[gid].i[ 3];
45
46   u32 wordl1[4];
47
48   wordl1[0] = pws[gid].i[ 4];
49   wordl1[1] = pws[gid].i[ 5];
50   wordl1[2] = pws[gid].i[ 6];
51   wordl1[3] = pws[gid].i[ 7];
52
53   u32 wordl2[4];
54
55   wordl2[0] = 0;
56   wordl2[1] = 0;
57   wordl2[2] = 0;
58   wordl2[3] = 0;
59
60   u32 wordl3[4];
61
62   wordl3[0] = 0;
63   wordl3[1] = 0;
64   wordl3[2] = 0;
65   wordl3[3] = 0;
66
67   const u32 pw_l_len = pws[gid].pw_len;
68
69   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
70   {
71     append_0x80_2x4 (wordl0, wordl1, pw_l_len);
72
73     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
74   }
75
76   /**
77    * loop
78    */
79
80   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
81   {
82     const u32 pw_r_len = combs_buf[il_pos].pw_len;
83
84     const u32 pw_len = pw_l_len + pw_r_len;
85
86     u32 wordr0[4];
87
88     wordr0[0] = combs_buf[il_pos].i[0];
89     wordr0[1] = combs_buf[il_pos].i[1];
90     wordr0[2] = combs_buf[il_pos].i[2];
91     wordr0[3] = combs_buf[il_pos].i[3];
92
93     u32 wordr1[4];
94
95     wordr1[0] = combs_buf[il_pos].i[4];
96     wordr1[1] = combs_buf[il_pos].i[5];
97     wordr1[2] = combs_buf[il_pos].i[6];
98     wordr1[3] = combs_buf[il_pos].i[7];
99
100     u32 wordr2[4];
101
102     wordr2[0] = 0;
103     wordr2[1] = 0;
104     wordr2[2] = 0;
105     wordr2[3] = 0;
106
107     u32 wordr3[4];
108
109     wordr3[0] = 0;
110     wordr3[1] = 0;
111     wordr3[2] = 0;
112     wordr3[3] = 0;
113
114     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
115     {
116       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
117     }
118
119     u32 w0[4];
120
121     w0[0] = wordl0[0] | wordr0[0];
122     w0[1] = wordl0[1] | wordr0[1];
123     w0[2] = wordl0[2] | wordr0[2];
124     w0[3] = wordl0[3] | wordr0[3];
125
126     u32 w1[4];
127
128     w1[0] = wordl1[0] | wordr1[0];
129     w1[1] = wordl1[1] | wordr1[1];
130     w1[2] = wordl1[2] | wordr1[2];
131     w1[3] = wordl1[3] | wordr1[3];
132
133     u32 w2[4];
134
135     w2[0] = 0;
136     w2[1] = 0;
137     w2[2] = 0;
138     w2[3] = 0;
139
140     u32 w3[4];
141
142     w3[0] = 0;
143     w3[1] = 0;
144     w3[2] = 0;
145     w3[3] = 0;
146
147     u32 w0_t[4];
148     u32 w1_t[4];
149     u32 w2_t[4];
150     u32 w3_t[4];
151
152     make_unicode (w0, w0_t, w1_t);
153     make_unicode (w1, w2_t, w3_t);
154
155     w3_t[2] = pw_len * 8 * 2;
156
157     u32 a = MD4M_A;
158     u32 b = MD4M_B;
159     u32 c = MD4M_C;
160     u32 d = MD4M_D;
161
162     MD4_STEP (MD4_Fo, a, b, c, d, w0_t[0], MD4C00, MD4S00);
163     MD4_STEP (MD4_Fo, d, a, b, c, w0_t[1], MD4C00, MD4S01);
164     MD4_STEP (MD4_Fo, c, d, a, b, w0_t[2], MD4C00, MD4S02);
165     MD4_STEP (MD4_Fo, b, c, d, a, w0_t[3], MD4C00, MD4S03);
166     MD4_STEP (MD4_Fo, a, b, c, d, w1_t[0], MD4C00, MD4S00);
167     MD4_STEP (MD4_Fo, d, a, b, c, w1_t[1], MD4C00, MD4S01);
168     MD4_STEP (MD4_Fo, c, d, a, b, w1_t[2], MD4C00, MD4S02);
169     MD4_STEP (MD4_Fo, b, c, d, a, w1_t[3], MD4C00, MD4S03);
170     MD4_STEP (MD4_Fo, a, b, c, d, w2_t[0], MD4C00, MD4S00);
171     MD4_STEP (MD4_Fo, d, a, b, c, w2_t[1], MD4C00, MD4S01);
172     MD4_STEP (MD4_Fo, c, d, a, b, w2_t[2], MD4C00, MD4S02);
173     MD4_STEP (MD4_Fo, b, c, d, a, w2_t[3], MD4C00, MD4S03);
174     MD4_STEP (MD4_Fo, a, b, c, d, w3_t[0], MD4C00, MD4S00);
175     MD4_STEP (MD4_Fo, d, a, b, c, w3_t[1], MD4C00, MD4S01);
176     MD4_STEP (MD4_Fo, c, d, a, b, w3_t[2], MD4C00, MD4S02);
177     MD4_STEP (MD4_Fo, b, c, d, a, w3_t[3], MD4C00, MD4S03);
178
179     MD4_STEP (MD4_Go, a, b, c, d, w0_t[0], MD4C01, MD4S10);
180     MD4_STEP (MD4_Go, d, a, b, c, w1_t[0], MD4C01, MD4S11);
181     MD4_STEP (MD4_Go, c, d, a, b, w2_t[0], MD4C01, MD4S12);
182     MD4_STEP (MD4_Go, b, c, d, a, w3_t[0], MD4C01, MD4S13);
183     MD4_STEP (MD4_Go, a, b, c, d, w0_t[1], MD4C01, MD4S10);
184     MD4_STEP (MD4_Go, d, a, b, c, w1_t[1], MD4C01, MD4S11);
185     MD4_STEP (MD4_Go, c, d, a, b, w2_t[1], MD4C01, MD4S12);
186     MD4_STEP (MD4_Go, b, c, d, a, w3_t[1], MD4C01, MD4S13);
187     MD4_STEP (MD4_Go, a, b, c, d, w0_t[2], MD4C01, MD4S10);
188     MD4_STEP (MD4_Go, d, a, b, c, w1_t[2], MD4C01, MD4S11);
189     MD4_STEP (MD4_Go, c, d, a, b, w2_t[2], MD4C01, MD4S12);
190     MD4_STEP (MD4_Go, b, c, d, a, w3_t[2], MD4C01, MD4S13);
191     MD4_STEP (MD4_Go, a, b, c, d, w0_t[3], MD4C01, MD4S10);
192     MD4_STEP (MD4_Go, d, a, b, c, w1_t[3], MD4C01, MD4S11);
193     MD4_STEP (MD4_Go, c, d, a, b, w2_t[3], MD4C01, MD4S12);
194     MD4_STEP (MD4_Go, b, c, d, a, w3_t[3], MD4C01, MD4S13);
195
196     MD4_STEP (MD4_H , a, b, c, d, w0_t[0], MD4C02, MD4S20);
197     MD4_STEP (MD4_H , d, a, b, c, w2_t[0], MD4C02, MD4S21);
198     MD4_STEP (MD4_H , c, d, a, b, w1_t[0], MD4C02, MD4S22);
199     MD4_STEP (MD4_H , b, c, d, a, w3_t[0], MD4C02, MD4S23);
200     MD4_STEP (MD4_H , a, b, c, d, w0_t[2], MD4C02, MD4S20);
201     MD4_STEP (MD4_H , d, a, b, c, w2_t[2], MD4C02, MD4S21);
202     MD4_STEP (MD4_H , c, d, a, b, w1_t[2], MD4C02, MD4S22);
203     MD4_STEP (MD4_H , b, c, d, a, w3_t[2], MD4C02, MD4S23);
204     MD4_STEP (MD4_H , a, b, c, d, w0_t[1], MD4C02, MD4S20);
205     MD4_STEP (MD4_H , d, a, b, c, w2_t[1], MD4C02, MD4S21);
206     MD4_STEP (MD4_H , c, d, a, b, w1_t[1], MD4C02, MD4S22);
207     MD4_STEP (MD4_H , b, c, d, a, w3_t[1], MD4C02, MD4S23);
208     MD4_STEP (MD4_H , a, b, c, d, w0_t[3], MD4C02, MD4S20);
209     MD4_STEP (MD4_H , d, a, b, c, w2_t[3], MD4C02, MD4S21);
210     MD4_STEP (MD4_H , c, d, a, b, w1_t[3], MD4C02, MD4S22);
211     MD4_STEP (MD4_H , b, c, d, a, w3_t[3], MD4C02, MD4S23);
212
213     const u32 r0 = a;
214     const u32 r1 = d;
215     const u32 r2 = c;
216     const u32 r3 = b;
217
218     #include COMPARE_M
219   }
220 }
221
222 __kernel void m01000_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_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)
223 {
224 }
225
226 __kernel void m01000_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_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)
227 {
228 }
229
230 __kernel void m01000_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_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)
231 {
232   /**
233    * modifier
234    */
235
236   const u32 lid = get_local_id (0);
237
238   /**
239    * base
240    */
241
242   const u32 gid = get_global_id (0);
243
244   if (gid >= gid_max) return;
245
246   u32 wordl0[4];
247
248   wordl0[0] = pws[gid].i[ 0];
249   wordl0[1] = pws[gid].i[ 1];
250   wordl0[2] = pws[gid].i[ 2];
251   wordl0[3] = pws[gid].i[ 3];
252
253   u32 wordl1[4];
254
255   wordl1[0] = pws[gid].i[ 4];
256   wordl1[1] = pws[gid].i[ 5];
257   wordl1[2] = pws[gid].i[ 6];
258   wordl1[3] = pws[gid].i[ 7];
259
260   u32 wordl2[4];
261
262   wordl2[0] = 0;
263   wordl2[1] = 0;
264   wordl2[2] = 0;
265   wordl2[3] = 0;
266
267   u32 wordl3[4];
268
269   wordl3[0] = 0;
270   wordl3[1] = 0;
271   wordl3[2] = 0;
272   wordl3[3] = 0;
273
274   const u32 pw_l_len = pws[gid].pw_len;
275
276   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
277   {
278     append_0x80_2x4 (wordl0, wordl1, pw_l_len);
279
280     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
281   }
282
283   /**
284    * digest
285    */
286
287   const u32 search[4] =
288   {
289     digests_buf[digests_offset].digest_buf[DGST_R0],
290     digests_buf[digests_offset].digest_buf[DGST_R1],
291     digests_buf[digests_offset].digest_buf[DGST_R2],
292     digests_buf[digests_offset].digest_buf[DGST_R3]
293   };
294
295   /**
296    * loop
297    */
298
299   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
300   {
301     const u32 pw_r_len = combs_buf[il_pos].pw_len;
302
303     const u32 pw_len = pw_l_len + pw_r_len;
304
305     u32 wordr0[4];
306
307     wordr0[0] = combs_buf[il_pos].i[0];
308     wordr0[1] = combs_buf[il_pos].i[1];
309     wordr0[2] = combs_buf[il_pos].i[2];
310     wordr0[3] = combs_buf[il_pos].i[3];
311
312     u32 wordr1[4];
313
314     wordr1[0] = combs_buf[il_pos].i[4];
315     wordr1[1] = combs_buf[il_pos].i[5];
316     wordr1[2] = combs_buf[il_pos].i[6];
317     wordr1[3] = combs_buf[il_pos].i[7];
318
319     u32 wordr2[4];
320
321     wordr2[0] = 0;
322     wordr2[1] = 0;
323     wordr2[2] = 0;
324     wordr2[3] = 0;
325
326     u32 wordr3[4];
327
328     wordr3[0] = 0;
329     wordr3[1] = 0;
330     wordr3[2] = 0;
331     wordr3[3] = 0;
332
333     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
334     {
335       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
336     }
337
338     u32 w0[4];
339
340     w0[0] = wordl0[0] | wordr0[0];
341     w0[1] = wordl0[1] | wordr0[1];
342     w0[2] = wordl0[2] | wordr0[2];
343     w0[3] = wordl0[3] | wordr0[3];
344
345     u32 w1[4];
346
347     w1[0] = wordl1[0] | wordr1[0];
348     w1[1] = wordl1[1] | wordr1[1];
349     w1[2] = wordl1[2] | wordr1[2];
350     w1[3] = wordl1[3] | wordr1[3];
351
352     u32 w2[4];
353
354     w2[0] = 0;
355     w2[1] = 0;
356     w2[2] = 0;
357     w2[3] = 0;
358
359     u32 w3[4];
360
361     w3[0] = 0;
362     w3[1] = 0;
363     w3[2] = 0;
364     w3[3] = 0;
365
366     u32 w0_t[4];
367     u32 w1_t[4];
368     u32 w2_t[4];
369     u32 w3_t[4];
370
371     make_unicode (w0, w0_t, w1_t);
372     make_unicode (w1, w2_t, w3_t);
373
374     w3_t[2] = pw_len * 8 * 2;
375
376     u32 a = MD4M_A;
377     u32 b = MD4M_B;
378     u32 c = MD4M_C;
379     u32 d = MD4M_D;
380
381     MD4_STEP (MD4_Fo, a, b, c, d, w0_t[0], MD4C00, MD4S00);
382     MD4_STEP (MD4_Fo, d, a, b, c, w0_t[1], MD4C00, MD4S01);
383     MD4_STEP (MD4_Fo, c, d, a, b, w0_t[2], MD4C00, MD4S02);
384     MD4_STEP (MD4_Fo, b, c, d, a, w0_t[3], MD4C00, MD4S03);
385     MD4_STEP (MD4_Fo, a, b, c, d, w1_t[0], MD4C00, MD4S00);
386     MD4_STEP (MD4_Fo, d, a, b, c, w1_t[1], MD4C00, MD4S01);
387     MD4_STEP (MD4_Fo, c, d, a, b, w1_t[2], MD4C00, MD4S02);
388     MD4_STEP (MD4_Fo, b, c, d, a, w1_t[3], MD4C00, MD4S03);
389     MD4_STEP (MD4_Fo, a, b, c, d, w2_t[0], MD4C00, MD4S00);
390     MD4_STEP (MD4_Fo, d, a, b, c, w2_t[1], MD4C00, MD4S01);
391     MD4_STEP (MD4_Fo, c, d, a, b, w2_t[2], MD4C00, MD4S02);
392     MD4_STEP (MD4_Fo, b, c, d, a, w2_t[3], MD4C00, MD4S03);
393     MD4_STEP (MD4_Fo, a, b, c, d, w3_t[0], MD4C00, MD4S00);
394     MD4_STEP (MD4_Fo, d, a, b, c, w3_t[1], MD4C00, MD4S01);
395     MD4_STEP (MD4_Fo, c, d, a, b, w3_t[2], MD4C00, MD4S02);
396     MD4_STEP (MD4_Fo, b, c, d, a, w3_t[3], MD4C00, MD4S03);
397
398     MD4_STEP (MD4_Go, a, b, c, d, w0_t[0], MD4C01, MD4S10);
399     MD4_STEP (MD4_Go, d, a, b, c, w1_t[0], MD4C01, MD4S11);
400     MD4_STEP (MD4_Go, c, d, a, b, w2_t[0], MD4C01, MD4S12);
401     MD4_STEP (MD4_Go, b, c, d, a, w3_t[0], MD4C01, MD4S13);
402     MD4_STEP (MD4_Go, a, b, c, d, w0_t[1], MD4C01, MD4S10);
403     MD4_STEP (MD4_Go, d, a, b, c, w1_t[1], MD4C01, MD4S11);
404     MD4_STEP (MD4_Go, c, d, a, b, w2_t[1], MD4C01, MD4S12);
405     MD4_STEP (MD4_Go, b, c, d, a, w3_t[1], MD4C01, MD4S13);
406     MD4_STEP (MD4_Go, a, b, c, d, w0_t[2], MD4C01, MD4S10);
407     MD4_STEP (MD4_Go, d, a, b, c, w1_t[2], MD4C01, MD4S11);
408     MD4_STEP (MD4_Go, c, d, a, b, w2_t[2], MD4C01, MD4S12);
409     MD4_STEP (MD4_Go, b, c, d, a, w3_t[2], MD4C01, MD4S13);
410     MD4_STEP (MD4_Go, a, b, c, d, w0_t[3], MD4C01, MD4S10);
411     MD4_STEP (MD4_Go, d, a, b, c, w1_t[3], MD4C01, MD4S11);
412     MD4_STEP (MD4_Go, c, d, a, b, w2_t[3], MD4C01, MD4S12);
413     MD4_STEP (MD4_Go, b, c, d, a, w3_t[3], MD4C01, MD4S13);
414
415     MD4_STEP (MD4_H , a, b, c, d, w0_t[0], MD4C02, MD4S20);
416     MD4_STEP (MD4_H , d, a, b, c, w2_t[0], MD4C02, MD4S21);
417     MD4_STEP (MD4_H , c, d, a, b, w1_t[0], MD4C02, MD4S22);
418     MD4_STEP (MD4_H , b, c, d, a, w3_t[0], MD4C02, MD4S23);
419     MD4_STEP (MD4_H , a, b, c, d, w0_t[2], MD4C02, MD4S20);
420     MD4_STEP (MD4_H , d, a, b, c, w2_t[2], MD4C02, MD4S21);
421     MD4_STEP (MD4_H , c, d, a, b, w1_t[2], MD4C02, MD4S22);
422     MD4_STEP (MD4_H , b, c, d, a, w3_t[2], MD4C02, MD4S23);
423     MD4_STEP (MD4_H , a, b, c, d, w0_t[1], MD4C02, MD4S20);
424     MD4_STEP (MD4_H , d, a, b, c, w2_t[1], MD4C02, MD4S21);
425     MD4_STEP (MD4_H , c, d, a, b, w1_t[1], MD4C02, MD4S22);
426     MD4_STEP (MD4_H , b, c, d, a, w3_t[1], MD4C02, MD4S23);
427     MD4_STEP (MD4_H , a, b, c, d, w0_t[3], MD4C02, MD4S20);
428     MD4_STEP (MD4_H , d, a, b, c, w2_t[3], MD4C02, MD4S21);
429     MD4_STEP (MD4_H , c, d, a, b, w1_t[3], MD4C02, MD4S22);
430     MD4_STEP (MD4_H , b, c, d, a, w3_t[3], MD4C02, MD4S23);
431
432     const u32 r0 = a;
433     const u32 r1 = d;
434     const u32 r2 = c;
435     const u32 r3 = b;
436
437     #include COMPARE_S
438   }
439 }
440
441 __kernel void m01000_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_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)
442 {
443 }
444
445 __kernel void m01000_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_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)
446 {
447 }