Initial commit
[hashcat.git] / amd / m00000_a3.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
7 #define _SCALAR_
8
9 #include "include/constants.h"
10 #include "include/kernel_vendor.h"
11
12 #ifdef  VLIW1
13 #define VECT_SIZE1
14 #endif
15
16 #ifdef  VLIW4
17 #define VECT_SIZE4
18 #endif
19
20 #ifdef  VLIW5
21 #define VECT_SIZE4
22 #endif
23
24 #define DGST_R0 0
25 #define DGST_R1 3
26 #define DGST_R2 2
27 #define DGST_R3 1
28
29 #include "include/kernel_functions.c"
30 #include "types_amd.c"
31 #include "common_amd.c"
32
33 #ifdef  VECT_SIZE1
34 #define VECT_COMPARE_S "check_single_vect1_comp4_warp.c"
35 #define VECT_COMPARE_M "check_multi_vect1_comp4_warp.c"
36 #endif
37
38 #ifdef  VECT_SIZE2
39 #define VECT_COMPARE_S "check_single_vect2_comp4_warp.c"
40 #define VECT_COMPARE_M "check_multi_vect2_comp4_warp.c"
41 #endif
42
43 #ifdef  VECT_SIZE4
44 #define VECT_COMPARE_S "check_single_vect4_comp4_warp.c"
45 #define VECT_COMPARE_M "check_multi_vect4_comp4_warp.c"
46 #endif
47
48 #define MD5_STEP_REV(f,a,b,c,d,x,t,s)   \
49 {                                       \
50   a -= b;                               \
51   a  = rotr32 (a, s);                   \
52   a -= f (b, c, d);                     \
53   a -= x;                               \
54   a -= t;                               \
55 }
56
57 #define MD5_STEP_REV1(f,a,b,c,d,x,t,s)  \
58 {                                       \
59   a -= b;                               \
60   a  = rotr32 (a, s);                   \
61   a -= x;                               \
62   a -= t;                               \
63 }
64
65 static void m00000m (u32 w[16], const u32 pw_len, __global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
66 {
67   /**
68    * modifier
69    */
70
71   const u32 gid = get_global_id (0);
72   const u32 lid = get_local_id (0);
73
74   /**
75    * base
76    */
77
78   const u32 F_w0c00 =    0  + MD5C00;
79   const u32 F_w1c01 = w[ 1] + MD5C01;
80   const u32 F_w2c02 = w[ 2] + MD5C02;
81   const u32 F_w3c03 = w[ 3] + MD5C03;
82   const u32 F_w4c04 = w[ 4] + MD5C04;
83   const u32 F_w5c05 = w[ 5] + MD5C05;
84   const u32 F_w6c06 = w[ 6] + MD5C06;
85   const u32 F_w7c07 = w[ 7] + MD5C07;
86   const u32 F_w8c08 = w[ 8] + MD5C08;
87   const u32 F_w9c09 = w[ 9] + MD5C09;
88   const u32 F_wac0a = w[10] + MD5C0a;
89   const u32 F_wbc0b = w[11] + MD5C0b;
90   const u32 F_wcc0c = w[12] + MD5C0c;
91   const u32 F_wdc0d = w[13] + MD5C0d;
92   const u32 F_wec0e = w[14] + MD5C0e;
93   const u32 F_wfc0f = w[15] + MD5C0f;
94
95   const u32 G_w1c10 = w[ 1] + MD5C10;
96   const u32 G_w6c11 = w[ 6] + MD5C11;
97   const u32 G_wbc12 = w[11] + MD5C12;
98   const u32 G_w0c13 =    0  + MD5C13;
99   const u32 G_w5c14 = w[ 5] + MD5C14;
100   const u32 G_wac15 = w[10] + MD5C15;
101   const u32 G_wfc16 = w[15] + MD5C16;
102   const u32 G_w4c17 = w[ 4] + MD5C17;
103   const u32 G_w9c18 = w[ 9] + MD5C18;
104   const u32 G_wec19 = w[14] + MD5C19;
105   const u32 G_w3c1a = w[ 3] + MD5C1a;
106   const u32 G_w8c1b = w[ 8] + MD5C1b;
107   const u32 G_wdc1c = w[13] + MD5C1c;
108   const u32 G_w2c1d = w[ 2] + MD5C1d;
109   const u32 G_w7c1e = w[ 7] + MD5C1e;
110   const u32 G_wcc1f = w[12] + MD5C1f;
111
112   const u32 H_w5c20 = w[ 5] + MD5C20;
113   const u32 H_w8c21 = w[ 8] + MD5C21;
114   const u32 H_wbc22 = w[11] + MD5C22;
115   const u32 H_wec23 = w[14] + MD5C23;
116   const u32 H_w1c24 = w[ 1] + MD5C24;
117   const u32 H_w4c25 = w[ 4] + MD5C25;
118   const u32 H_w7c26 = w[ 7] + MD5C26;
119   const u32 H_wac27 = w[10] + MD5C27;
120   const u32 H_wdc28 = w[13] + MD5C28;
121   const u32 H_w0c29 =    0  + MD5C29;
122   const u32 H_w3c2a = w[ 3] + MD5C2a;
123   const u32 H_w6c2b = w[ 6] + MD5C2b;
124   const u32 H_w9c2c = w[ 9] + MD5C2c;
125   const u32 H_wcc2d = w[12] + MD5C2d;
126   const u32 H_wfc2e = w[15] + MD5C2e;
127   const u32 H_w2c2f = w[ 2] + MD5C2f;
128
129   const u32 I_w0c30 =    0  + MD5C30;
130   const u32 I_w7c31 = w[ 7] + MD5C31;
131   const u32 I_wec32 = w[14] + MD5C32;
132   const u32 I_w5c33 = w[ 5] + MD5C33;
133   const u32 I_wcc34 = w[12] + MD5C34;
134   const u32 I_w3c35 = w[ 3] + MD5C35;
135   const u32 I_wac36 = w[10] + MD5C36;
136   const u32 I_w1c37 = w[ 1] + MD5C37;
137   const u32 I_w8c38 = w[ 8] + MD5C38;
138   const u32 I_wfc39 = w[15] + MD5C39;
139   const u32 I_w6c3a = w[ 6] + MD5C3a;
140   const u32 I_wdc3b = w[13] + MD5C3b;
141   const u32 I_w4c3c = w[ 4] + MD5C3c;
142   const u32 I_wbc3d = w[11] + MD5C3d;
143   const u32 I_w2c3e = w[ 2] + MD5C3e;
144   const u32 I_w9c3f = w[ 9] + MD5C3f;
145
146   /**
147    * loop
148    */
149
150   const u32 bf_loops = ceil ((float) bfs_cnt / VECT_DIV);
151
152   u32x w0l = w[0];
153
154   for (u32 il_pos = 0; il_pos < bf_loops; il_pos++)
155   {
156     const u32x w0r = words_buf_r[il_pos];
157
158     const u32x w0 = w0l | w0r;
159
160     u32x tmp2;
161
162     u32x a = MD5M_A;
163     u32x b = MD5M_B;
164     u32x c = MD5M_C;
165     u32x d = MD5M_D;
166
167     MD5_STEP (MD5_Fo, a, b, c, d, w0, F_w0c00, MD5S00);
168     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w1c01, MD5S01);
169     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w2c02, MD5S02);
170     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w3c03, MD5S03);
171     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w4c04, MD5S00);
172     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w5c05, MD5S01);
173     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w6c06, MD5S02);
174     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w7c07, MD5S03);
175     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w8c08, MD5S00);
176     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w9c09, MD5S01);
177     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wac0a, MD5S02);
178     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wbc0b, MD5S03);
179     MD5_STEP0(MD5_Fo, a, b, c, d,     F_wcc0c, MD5S00);
180     MD5_STEP0(MD5_Fo, d, a, b, c,     F_wdc0d, MD5S01);
181     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wec0e, MD5S02);
182     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wfc0f, MD5S03);
183
184     MD5_STEP0(MD5_Go, a, b, c, d,     G_w1c10, MD5S10);
185     MD5_STEP0(MD5_Go, d, a, b, c,     G_w6c11, MD5S11);
186     MD5_STEP0(MD5_Go, c, d, a, b,     G_wbc12, MD5S12);
187     MD5_STEP (MD5_Go, b, c, d, a, w0, G_w0c13, MD5S13);
188     MD5_STEP0(MD5_Go, a, b, c, d,     G_w5c14, MD5S10);
189     MD5_STEP0(MD5_Go, d, a, b, c,     G_wac15, MD5S11);
190     MD5_STEP0(MD5_Go, c, d, a, b,     G_wfc16, MD5S12);
191     MD5_STEP0(MD5_Go, b, c, d, a,     G_w4c17, MD5S13);
192     MD5_STEP0(MD5_Go, a, b, c, d,     G_w9c18, MD5S10);
193     MD5_STEP0(MD5_Go, d, a, b, c,     G_wec19, MD5S11);
194     MD5_STEP0(MD5_Go, c, d, a, b,     G_w3c1a, MD5S12);
195     MD5_STEP0(MD5_Go, b, c, d, a,     G_w8c1b, MD5S13);
196     MD5_STEP0(MD5_Go, a, b, c, d,     G_wdc1c, MD5S10);
197     MD5_STEP0(MD5_Go, d, a, b, c,     G_w2c1d, MD5S11);
198     MD5_STEP0(MD5_Go, c, d, a, b,     G_w7c1e, MD5S12);
199     MD5_STEP0(MD5_Go, b, c, d, a,     G_wcc1f, MD5S13);
200
201     MD5_STEP0(MD5_H1, a, b, c, d,     H_w5c20, MD5S20);
202     MD5_STEP0(MD5_H2, d, a, b, c,     H_w8c21, MD5S21);
203     MD5_STEP0(MD5_H1, c, d, a, b,     H_wbc22, MD5S22);
204     MD5_STEP0(MD5_H2, b, c, d, a,     H_wec23, MD5S23);
205     MD5_STEP0(MD5_H1, a, b, c, d,     H_w1c24, MD5S20);
206     MD5_STEP0(MD5_H2, d, a, b, c,     H_w4c25, MD5S21);
207     MD5_STEP0(MD5_H1, c, d, a, b,     H_w7c26, MD5S22);
208     MD5_STEP0(MD5_H2, b, c, d, a,     H_wac27, MD5S23);
209     MD5_STEP0(MD5_H1, a, b, c, d,     H_wdc28, MD5S20);
210     MD5_STEP (MD5_H2, d, a, b, c, w0, H_w0c29, MD5S21);
211     MD5_STEP0(MD5_H1, c, d, a, b,     H_w3c2a, MD5S22);
212     MD5_STEP0(MD5_H2, b, c, d, a,     H_w6c2b, MD5S23);
213     MD5_STEP0(MD5_H1, a, b, c, d,     H_w9c2c, MD5S20);
214     MD5_STEP0(MD5_H2, d, a, b, c,     H_wcc2d, MD5S21);
215     MD5_STEP0(MD5_H1, c, d, a, b,     H_wfc2e, MD5S22);
216     MD5_STEP0(MD5_H2, b, c, d, a,     H_w2c2f, MD5S23);
217
218     MD5_STEP (MD5_I , a, b, c, d, w0, I_w0c30, MD5S30);
219     MD5_STEP0(MD5_I , d, a, b, c,     I_w7c31, MD5S31);
220     MD5_STEP0(MD5_I , c, d, a, b,     I_wec32, MD5S32);
221     MD5_STEP0(MD5_I , b, c, d, a,     I_w5c33, MD5S33);
222     MD5_STEP0(MD5_I , a, b, c, d,     I_wcc34, MD5S30);
223     MD5_STEP0(MD5_I , d, a, b, c,     I_w3c35, MD5S31);
224     MD5_STEP0(MD5_I , c, d, a, b,     I_wac36, MD5S32);
225     MD5_STEP0(MD5_I , b, c, d, a,     I_w1c37, MD5S33);
226     MD5_STEP0(MD5_I , a, b, c, d,     I_w8c38, MD5S30);
227     MD5_STEP0(MD5_I , d, a, b, c,     I_wfc39, MD5S31);
228     MD5_STEP0(MD5_I , c, d, a, b,     I_w6c3a, MD5S32);
229     MD5_STEP0(MD5_I , b, c, d, a,     I_wdc3b, MD5S33);
230     MD5_STEP0(MD5_I , a, b, c, d,     I_w4c3c, MD5S30);
231     MD5_STEP0(MD5_I , d, a, b, c,     I_wbc3d, MD5S31);
232     MD5_STEP0(MD5_I , c, d, a, b,     I_w2c3e, MD5S32);
233     MD5_STEP0(MD5_I , b, c, d, a,     I_w9c3f, MD5S33);
234
235
236     const u32x r0 = a;
237     const u32x r1 = d;
238     const u32x r2 = c;
239     const u32x r3 = b;
240
241     #include VECT_COMPARE_M
242   }
243 }
244
245 static void m00000s (u32 w[16], const u32 pw_len, __global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset)
246 {
247   /**
248    * modifier
249    */
250
251   const u32 gid = get_global_id (0);
252   const u32 lid = get_local_id (0);
253
254   /**
255    * base
256    */
257
258   const u32 F_w0c00 =    0  + MD5C00;
259   const u32 F_w1c01 = w[ 1] + MD5C01;
260   const u32 F_w2c02 = w[ 2] + MD5C02;
261   const u32 F_w3c03 = w[ 3] + MD5C03;
262   const u32 F_w4c04 = w[ 4] + MD5C04;
263   const u32 F_w5c05 = w[ 5] + MD5C05;
264   const u32 F_w6c06 = w[ 6] + MD5C06;
265   const u32 F_w7c07 = w[ 7] + MD5C07;
266   const u32 F_w8c08 = w[ 8] + MD5C08;
267   const u32 F_w9c09 = w[ 9] + MD5C09;
268   const u32 F_wac0a = w[10] + MD5C0a;
269   const u32 F_wbc0b = w[11] + MD5C0b;
270   const u32 F_wcc0c = w[12] + MD5C0c;
271   const u32 F_wdc0d = w[13] + MD5C0d;
272   const u32 F_wec0e = w[14] + MD5C0e;
273   const u32 F_wfc0f = w[15] + MD5C0f;
274
275   const u32 G_w1c10 = w[ 1] + MD5C10;
276   const u32 G_w6c11 = w[ 6] + MD5C11;
277   const u32 G_wbc12 = w[11] + MD5C12;
278   const u32 G_w0c13 =    0  + MD5C13;
279   const u32 G_w5c14 = w[ 5] + MD5C14;
280   const u32 G_wac15 = w[10] + MD5C15;
281   const u32 G_wfc16 = w[15] + MD5C16;
282   const u32 G_w4c17 = w[ 4] + MD5C17;
283   const u32 G_w9c18 = w[ 9] + MD5C18;
284   const u32 G_wec19 = w[14] + MD5C19;
285   const u32 G_w3c1a = w[ 3] + MD5C1a;
286   const u32 G_w8c1b = w[ 8] + MD5C1b;
287   const u32 G_wdc1c = w[13] + MD5C1c;
288   const u32 G_w2c1d = w[ 2] + MD5C1d;
289   const u32 G_w7c1e = w[ 7] + MD5C1e;
290   const u32 G_wcc1f = w[12] + MD5C1f;
291
292   const u32 H_w5c20 = w[ 5] + MD5C20;
293   const u32 H_w8c21 = w[ 8] + MD5C21;
294   const u32 H_wbc22 = w[11] + MD5C22;
295   const u32 H_wec23 = w[14] + MD5C23;
296   const u32 H_w1c24 = w[ 1] + MD5C24;
297   const u32 H_w4c25 = w[ 4] + MD5C25;
298   const u32 H_w7c26 = w[ 7] + MD5C26;
299   const u32 H_wac27 = w[10] + MD5C27;
300   const u32 H_wdc28 = w[13] + MD5C28;
301   const u32 H_w0c29 =    0  + MD5C29;
302   const u32 H_w3c2a = w[ 3] + MD5C2a;
303   const u32 H_w6c2b = w[ 6] + MD5C2b;
304   const u32 H_w9c2c = w[ 9] + MD5C2c;
305   const u32 H_wcc2d = w[12] + MD5C2d;
306   const u32 H_wfc2e = w[15] + MD5C2e;
307   const u32 H_w2c2f = w[ 2] + MD5C2f;
308
309   const u32 I_w0c30 =    0  + MD5C30;
310   const u32 I_w7c31 = w[ 7] + MD5C31;
311   const u32 I_wec32 = w[14] + MD5C32;
312   const u32 I_w5c33 = w[ 5] + MD5C33;
313   const u32 I_wcc34 = w[12] + MD5C34;
314   const u32 I_w3c35 = w[ 3] + MD5C35;
315   const u32 I_wac36 = w[10] + MD5C36;
316   const u32 I_w1c37 = w[ 1] + MD5C37;
317   const u32 I_w8c38 = w[ 8] + MD5C38;
318   const u32 I_wfc39 = w[15] + MD5C39;
319   const u32 I_w6c3a = w[ 6] + MD5C3a;
320   const u32 I_wdc3b = w[13] + MD5C3b;
321   const u32 I_w4c3c = w[ 4] + MD5C3c;
322   const u32 I_wbc3d = w[11] + MD5C3d;
323   const u32 I_w2c3e = w[ 2] + MD5C3e;
324   const u32 I_w9c3f = w[ 9] + MD5C3f;
325
326   /**
327    * digest
328    */
329
330   const u32 search[4] =
331   {
332     digests_buf[digests_offset].digest_buf[DGST_R0],
333     digests_buf[digests_offset].digest_buf[DGST_R1],
334     digests_buf[digests_offset].digest_buf[DGST_R2],
335     digests_buf[digests_offset].digest_buf[DGST_R3]
336   };
337
338   /**
339    * reverse
340    */
341
342   u32 a_rev = digests_buf[digests_offset].digest_buf[0];
343   u32 b_rev = digests_buf[digests_offset].digest_buf[1];
344   u32 c_rev = digests_buf[digests_offset].digest_buf[2];
345   u32 d_rev = digests_buf[digests_offset].digest_buf[3];
346
347   MD5_STEP_REV (MD5_I, b_rev, c_rev, d_rev, a_rev, w[ 9], MD5C3f, MD5S33);
348   MD5_STEP_REV (MD5_I, c_rev, d_rev, a_rev, b_rev, w[ 2], MD5C3e, MD5S32);
349   MD5_STEP_REV (MD5_I, d_rev, a_rev, b_rev, c_rev, w[11], MD5C3d, MD5S31);
350   MD5_STEP_REV (MD5_I, a_rev, b_rev, c_rev, d_rev, w[ 4], MD5C3c, MD5S30);
351   MD5_STEP_REV (MD5_I, b_rev, c_rev, d_rev, a_rev, w[13], MD5C3b, MD5S33);
352   MD5_STEP_REV (MD5_I, c_rev, d_rev, a_rev, b_rev, w[ 6], MD5C3a, MD5S32);
353   MD5_STEP_REV (MD5_I, d_rev, a_rev, b_rev, c_rev, w[15], MD5C39, MD5S31);
354   MD5_STEP_REV (MD5_I, a_rev, b_rev, c_rev, d_rev, w[ 8], MD5C38, MD5S30);
355   MD5_STEP_REV (MD5_I, b_rev, c_rev, d_rev, a_rev, w[ 1], MD5C37, MD5S33);
356   MD5_STEP_REV (MD5_I, c_rev, d_rev, a_rev, b_rev, w[10], MD5C36, MD5S32);
357   MD5_STEP_REV (MD5_I, d_rev, a_rev, b_rev, c_rev, w[ 3], MD5C35, MD5S31);
358   MD5_STEP_REV (MD5_I, a_rev, b_rev, c_rev, d_rev, w[12], MD5C34, MD5S30);
359   MD5_STEP_REV (MD5_I, b_rev, c_rev, d_rev, a_rev, w[ 5], MD5C33, MD5S33);
360   MD5_STEP_REV (MD5_I, c_rev, d_rev, a_rev, b_rev, w[14], MD5C32, MD5S32);
361   MD5_STEP_REV (MD5_I, d_rev, a_rev, b_rev, c_rev, w[ 7], MD5C31, MD5S31);
362   MD5_STEP_REV (MD5_I, a_rev, b_rev, c_rev, d_rev,     0, MD5C30, MD5S30);
363
364   const u32x pre_cd = c_rev ^ d_rev;
365
366   MD5_STEP_REV1(MD5_H, b_rev, c_rev, d_rev, a_rev, w[ 2], MD5C2f, MD5S23);
367   MD5_STEP_REV1(MD5_H, c_rev, d_rev, a_rev, b_rev, w[15], MD5C2e, MD5S22);
368
369   /**
370    * loop
371    */
372
373   const u32 bf_loops = ceil ((float) bfs_cnt / VECT_DIV);
374
375   u32x w0l = w[0];
376
377   for (u32 il_pos = 0; il_pos < bf_loops; il_pos++)
378   {
379     const u32x w0r = words_buf_r[il_pos];
380
381     const u32x w0 = w0l | w0r;
382
383     const u32x pre_d = d_rev;
384     const u32x pre_a = a_rev - w0;
385     const u32x pre_b = b_rev - (pre_a ^ pre_cd);
386     const u32x pre_c = c_rev - (pre_a ^ pre_b ^ pre_d);
387
388     u32x tmp2;
389
390     u32x a = MD5M_A;
391     u32x b = MD5M_B;
392     u32x c = MD5M_C;
393     u32x d = MD5M_D;
394
395     MD5_STEP (MD5_Fo, a, b, c, d, w0, F_w0c00, MD5S00);
396     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w1c01, MD5S01);
397     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w2c02, MD5S02);
398     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w3c03, MD5S03);
399     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w4c04, MD5S00);
400     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w5c05, MD5S01);
401     MD5_STEP0(MD5_Fo, c, d, a, b,     F_w6c06, MD5S02);
402     MD5_STEP0(MD5_Fo, b, c, d, a,     F_w7c07, MD5S03);
403     MD5_STEP0(MD5_Fo, a, b, c, d,     F_w8c08, MD5S00);
404     MD5_STEP0(MD5_Fo, d, a, b, c,     F_w9c09, MD5S01);
405     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wac0a, MD5S02);
406     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wbc0b, MD5S03);
407     MD5_STEP0(MD5_Fo, a, b, c, d,     F_wcc0c, MD5S00);
408     MD5_STEP0(MD5_Fo, d, a, b, c,     F_wdc0d, MD5S01);
409     MD5_STEP0(MD5_Fo, c, d, a, b,     F_wec0e, MD5S02);
410     MD5_STEP0(MD5_Fo, b, c, d, a,     F_wfc0f, MD5S03);
411
412     MD5_STEP0(MD5_Go, a, b, c, d,     G_w1c10, MD5S10);
413     MD5_STEP0(MD5_Go, d, a, b, c,     G_w6c11, MD5S11);
414     MD5_STEP0(MD5_Go, c, d, a, b,     G_wbc12, MD5S12);
415     MD5_STEP (MD5_Go, b, c, d, a, w0, G_w0c13, MD5S13);
416     MD5_STEP0(MD5_Go, a, b, c, d,     G_w5c14, MD5S10);
417     MD5_STEP0(MD5_Go, d, a, b, c,     G_wac15, MD5S11);
418     MD5_STEP0(MD5_Go, c, d, a, b,     G_wfc16, MD5S12);
419     MD5_STEP0(MD5_Go, b, c, d, a,     G_w4c17, MD5S13);
420     MD5_STEP0(MD5_Go, a, b, c, d,     G_w9c18, MD5S10);
421     MD5_STEP0(MD5_Go, d, a, b, c,     G_wec19, MD5S11);
422     MD5_STEP0(MD5_Go, c, d, a, b,     G_w3c1a, MD5S12);
423     MD5_STEP0(MD5_Go, b, c, d, a,     G_w8c1b, MD5S13);
424     MD5_STEP0(MD5_Go, a, b, c, d,     G_wdc1c, MD5S10);
425     MD5_STEP0(MD5_Go, d, a, b, c,     G_w2c1d, MD5S11);
426     MD5_STEP0(MD5_Go, c, d, a, b,     G_w7c1e, MD5S12);
427     MD5_STEP0(MD5_Go, b, c, d, a,     G_wcc1f, MD5S13);
428
429     MD5_STEP0(MD5_H1, a, b, c, d,     H_w5c20, MD5S20);
430     MD5_STEP0(MD5_H2, d, a, b, c,     H_w8c21, MD5S21);
431     MD5_STEP0(MD5_H1, c, d, a, b,     H_wbc22, MD5S22);
432     MD5_STEP0(MD5_H2, b, c, d, a,     H_wec23, MD5S23);
433     MD5_STEP0(MD5_H1, a, b, c, d,     H_w1c24, MD5S20);
434     MD5_STEP0(MD5_H2, d, a, b, c,     H_w4c25, MD5S21);
435     MD5_STEP0(MD5_H1, c, d, a, b,     H_w7c26, MD5S22);
436     MD5_STEP0(MD5_H2, b, c, d, a,     H_wac27, MD5S23);
437     MD5_STEP0(MD5_H1, a, b, c, d,     H_wdc28, MD5S20);
438     MD5_STEP (MD5_H2, d, a, b, c, w0, H_w0c29, MD5S21);
439     MD5_STEP0(MD5_H1, c, d, a, b,     H_w3c2a, MD5S22);
440
441     bool q_cond = allx (pre_c != c);
442
443     if (q_cond) continue;
444
445     MD5_STEP0(MD5_H2, b, c, d, a,     H_w6c2b, MD5S23);
446     MD5_STEP0(MD5_H1, a, b, c, d,     H_w9c2c, MD5S20);
447     MD5_STEP0(MD5_H2, d, a, b, c,     H_wcc2d, MD5S21);
448
449     bool q_cond2 = allx (pre_d != d);
450
451     if (q_cond2) continue;
452
453     MD5_STEP0(MD5_H1, c, d, a, b,     H_wfc2e, MD5S22);
454     MD5_STEP0(MD5_H2, b, c, d, a,     H_w2c2f, MD5S23);
455
456     MD5_STEP (MD5_I , a, b, c, d, w0, I_w0c30, MD5S30);
457     MD5_STEP0(MD5_I , d, a, b, c,     I_w7c31, MD5S31);
458     MD5_STEP0(MD5_I , c, d, a, b,     I_wec32, MD5S32);
459     MD5_STEP0(MD5_I , b, c, d, a,     I_w5c33, MD5S33);
460     MD5_STEP0(MD5_I , a, b, c, d,     I_wcc34, MD5S30);
461     MD5_STEP0(MD5_I , d, a, b, c,     I_w3c35, MD5S31);
462     MD5_STEP0(MD5_I , c, d, a, b,     I_wac36, MD5S32);
463     MD5_STEP0(MD5_I , b, c, d, a,     I_w1c37, MD5S33);
464     MD5_STEP0(MD5_I , a, b, c, d,     I_w8c38, MD5S30);
465     MD5_STEP0(MD5_I , d, a, b, c,     I_wfc39, MD5S31);
466     MD5_STEP0(MD5_I , c, d, a, b,     I_w6c3a, MD5S32);
467     MD5_STEP0(MD5_I , b, c, d, a,     I_wdc3b, MD5S33);
468     MD5_STEP0(MD5_I , a, b, c, d,     I_w4c3c, MD5S30);
469     MD5_STEP0(MD5_I , d, a, b, c,     I_wbc3d, MD5S31);
470     MD5_STEP0(MD5_I , c, d, a, b,     I_w2c3e, MD5S32);
471     MD5_STEP0(MD5_I , b, c, d, a,     I_w9c3f, MD5S33);
472
473
474     const u32x r0 = a;
475     const u32x r1 = d;
476     const u32x r2 = c;
477     const u32x r3 = b;
478
479     #include VECT_COMPARE_S
480   }
481 }
482
483 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_m04 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
484 {
485   /**
486    * base
487    */
488
489   const u32 gid = get_global_id (0);
490
491   if (gid >= gid_max) return;
492
493   u32 w[16];
494
495   w[ 0] = pws[gid].i[ 0];
496   w[ 1] = pws[gid].i[ 1];
497   w[ 2] = pws[gid].i[ 2];
498   w[ 3] = pws[gid].i[ 3];
499   w[ 4] = 0;
500   w[ 5] = 0;
501   w[ 6] = 0;
502   w[ 7] = 0;
503   w[ 8] = 0;
504   w[ 9] = 0;
505   w[10] = 0;
506   w[11] = 0;
507   w[12] = 0;
508   w[13] = 0;
509   w[14] = pws[gid].i[14];
510   w[15] = 0;
511
512   const u32 pw_len = pws[gid].pw_len;
513
514   /**
515    * main
516    */
517
518   m00000m (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
519 }
520
521 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_m08 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
522 {
523   /**
524    * base
525    */
526
527   const u32 gid = get_global_id (0);
528
529   if (gid >= gid_max) return;
530
531   u32 w[16];
532
533   w[ 0] = pws[gid].i[ 0];
534   w[ 1] = pws[gid].i[ 1];
535   w[ 2] = pws[gid].i[ 2];
536   w[ 3] = pws[gid].i[ 3];
537   w[ 4] = pws[gid].i[ 4];
538   w[ 5] = pws[gid].i[ 5];
539   w[ 6] = pws[gid].i[ 6];
540   w[ 7] = pws[gid].i[ 7];
541   w[ 8] = 0;
542   w[ 9] = 0;
543   w[10] = 0;
544   w[11] = 0;
545   w[12] = 0;
546   w[13] = 0;
547   w[14] = pws[gid].i[14];
548   w[15] = 0;
549
550   const u32 pw_len = pws[gid].pw_len;
551
552   /**
553    * main
554    */
555
556   m00000m (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
557 }
558
559 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_m16 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
560 {
561   /**
562    * base
563    */
564
565   const u32 gid = get_global_id (0);
566
567   if (gid >= gid_max) return;
568
569   u32 w[16];
570
571   w[ 0] = pws[gid].i[ 0];
572   w[ 1] = pws[gid].i[ 1];
573   w[ 2] = pws[gid].i[ 2];
574   w[ 3] = pws[gid].i[ 3];
575   w[ 4] = pws[gid].i[ 4];
576   w[ 5] = pws[gid].i[ 5];
577   w[ 6] = pws[gid].i[ 6];
578   w[ 7] = pws[gid].i[ 7];
579   w[ 8] = pws[gid].i[ 8];
580   w[ 9] = pws[gid].i[ 9];
581   w[10] = pws[gid].i[10];
582   w[11] = pws[gid].i[11];
583   w[12] = pws[gid].i[12];
584   w[13] = pws[gid].i[13];
585   w[14] = pws[gid].i[14];
586   w[15] = pws[gid].i[15];
587
588   const u32 pw_len = pws[gid].pw_len;
589
590   /**
591    * main
592    */
593
594   m00000m (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
595 }
596
597 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_s04 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
598 {
599   /**
600    * base
601    */
602
603   const u32 gid = get_global_id (0);
604
605   if (gid >= gid_max) return;
606
607   u32 w[16];
608
609   w[ 0] = pws[gid].i[ 0];
610   w[ 1] = pws[gid].i[ 1];
611   w[ 2] = pws[gid].i[ 2];
612   w[ 3] = pws[gid].i[ 3];
613   w[ 4] = 0;
614   w[ 5] = 0;
615   w[ 6] = 0;
616   w[ 7] = 0;
617   w[ 8] = 0;
618   w[ 9] = 0;
619   w[10] = 0;
620   w[11] = 0;
621   w[12] = 0;
622   w[13] = 0;
623   w[14] = pws[gid].i[14];
624   w[15] = 0;
625
626   const u32 pw_len = pws[gid].pw_len;
627
628   /**
629    * main
630    */
631
632   m00000s (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
633 }
634
635 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_s08 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
636 {
637   /**
638    * base
639    */
640
641   const u32 gid = get_global_id (0);
642
643   if (gid >= gid_max) return;
644
645   u32 w[16];
646
647   w[ 0] = pws[gid].i[ 0];
648   w[ 1] = pws[gid].i[ 1];
649   w[ 2] = pws[gid].i[ 2];
650   w[ 3] = pws[gid].i[ 3];
651   w[ 4] = pws[gid].i[ 4];
652   w[ 5] = pws[gid].i[ 5];
653   w[ 6] = pws[gid].i[ 6];
654   w[ 7] = pws[gid].i[ 7];
655   w[ 8] = 0;
656   w[ 9] = 0;
657   w[10] = 0;
658   w[11] = 0;
659   w[12] = 0;
660   w[13] = 0;
661   w[14] = pws[gid].i[14];
662   w[15] = 0;
663
664   const u32 pw_len = pws[gid].pw_len;
665
666   /**
667    * main
668    */
669
670   m00000s (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
671 }
672
673 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m00000_s16 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global u32x * words_buf_r, __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 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
674 {
675   /**
676    * base
677    */
678
679   const u32 gid = get_global_id (0);
680
681   if (gid >= gid_max) return;
682
683   u32 w[16];
684
685   w[ 0] = pws[gid].i[ 0];
686   w[ 1] = pws[gid].i[ 1];
687   w[ 2] = pws[gid].i[ 2];
688   w[ 3] = pws[gid].i[ 3];
689   w[ 4] = pws[gid].i[ 4];
690   w[ 5] = pws[gid].i[ 5];
691   w[ 6] = pws[gid].i[ 6];
692   w[ 7] = pws[gid].i[ 7];
693   w[ 8] = pws[gid].i[ 8];
694   w[ 9] = pws[gid].i[ 9];
695   w[10] = pws[gid].i[10];
696   w[11] = pws[gid].i[11];
697   w[12] = pws[gid].i[12];
698   w[13] = pws[gid].i[13];
699   w[14] = pws[gid].i[14];
700   w[15] = pws[gid].i[15];
701
702   const u32 pw_len = pws[gid].pw_len;
703
704   /**
705    * main
706    */
707
708   m00000s (w, pw_len, pws, rules_buf, combs_buf, words_buf_r, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_scryptV_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, salt_pos, loop_pos, loop_cnt, bfs_cnt, digests_cnt, digests_offset);
709 }