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