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