More kernel fixes for function calls and vector datatypes
[hashcat.git] / OpenCL / m11100_a3.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 "types_ocl.c"
18 #include "common.c"
19
20 #define COMPARE_S "check_single_comp4.c"
21 #define COMPARE_M "check_multi_comp4.c"
22
23 #define uint_to_hex_lower8(i) l_bin2asc[(i)]
24
25 static void m11100m (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], const u32 pw_len, __global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, __local u32 l_bin2asc[256])
26 {
27   /**
28    * modifier
29    */
30
31   const u32 gid = get_global_id (0);
32   const u32 lid = get_local_id (0);
33
34   /**
35    * challenge
36    */
37
38   u32 challenge;
39
40   challenge = salt_bufs[salt_pos].salt_buf[0];
41
42   /**
43    * salt
44    */
45
46   u32 salt_buf0[4];
47
48   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 1]; // not a bug
49   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 2];
50   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 3];
51   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 4];
52
53   u32 salt_buf1[4];
54
55   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 5];
56   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 6];
57   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 7];
58   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 8];
59
60   u32 salt_buf2[4];
61
62   salt_buf2[0] = 0;
63   salt_buf2[1] = 0;
64   salt_buf2[2] = 0;
65   salt_buf2[3] = 0;
66
67   u32 salt_buf3[4];
68
69   salt_buf3[0] = 0;
70   salt_buf3[1] = 0;
71   salt_buf3[2] = 0;
72   salt_buf3[3] = 0;
73
74   const u32 salt_len = salt_bufs[salt_pos].salt_len - 4;
75
76   switch_buffer_by_offset (salt_buf0, salt_buf1, salt_buf2, salt_buf3, pw_len);
77
78   const u32 pw_salt_len = pw_len + salt_len;
79
80   /**
81    * loop
82    */
83
84   u32 w0l = w0[0];
85
86   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
87   {
88     const u32 w0r = bfs_buf[il_pos].i;
89
90     w0[0] = w0l | w0r;
91
92     u32 w0_t[4];
93
94     w0_t[0] = w0[0] | salt_buf0[0];
95     w0_t[1] = w0[1] | salt_buf0[1];
96     w0_t[2] = w0[2] | salt_buf0[2];
97     w0_t[3] = w0[3] | salt_buf0[3];
98
99     u32 w1_t[4];
100
101     w1_t[0] = w1[0] | salt_buf1[0];
102     w1_t[1] = w1[1] | salt_buf1[1];
103     w1_t[2] = w1[2] | salt_buf1[2];
104     w1_t[3] = w1[3] | salt_buf1[3];
105
106     u32 w2_t[4];
107
108     w2_t[0] = w2[0] | salt_buf2[0];
109     w2_t[1] = w2[1] | salt_buf2[1];
110     w2_t[2] = w2[2] | salt_buf2[2];
111     w2_t[3] = w2[3] | salt_buf2[3];
112
113     u32 w3_t[4];
114
115     w3_t[0] = w3[0] | salt_buf3[0];
116     w3_t[1] = w3[1] | salt_buf3[1];
117     w3_t[2] = pw_salt_len * 8;
118     w3_t[3] = 0;
119
120     /*
121      * md5 ($pass.$salt)
122      */
123
124     u32 a = MD5M_A;
125     u32 b = MD5M_B;
126     u32 c = MD5M_C;
127     u32 d = MD5M_D;
128
129     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
130     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
131     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
132     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
133     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
134     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
135     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
136     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
137     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
138     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
139     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
140     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
141     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
142     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
143     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
144     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
145
146     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
147     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
148     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
149     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
150     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
151     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
152     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
153     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
154     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
155     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
156     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
157     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
158     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
159     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
160     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
161     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
162
163     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
164     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
165     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
166     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
167     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
168     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
169     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
170     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
171     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
172     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
173     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
174     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
175     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
176     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
177     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
178     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
179
180     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
181     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
182     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
183     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
184     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
185     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
186     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
187     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
188     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
189     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
190     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
191     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
192     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
193     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
194     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
195     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
196
197     a += MD5M_A;
198     b += MD5M_B;
199     c += MD5M_C;
200     d += MD5M_D;
201
202     w0_t[0] = uint_to_hex_lower8 ((a >>  0) & 255) <<  0
203             | uint_to_hex_lower8 ((a >>  8) & 255) << 16;
204     w0_t[1] = uint_to_hex_lower8 ((a >> 16) & 255) <<  0
205             | uint_to_hex_lower8 ((a >> 24) & 255) << 16;
206     w0_t[2] = uint_to_hex_lower8 ((b >>  0) & 255) <<  0
207             | uint_to_hex_lower8 ((b >>  8) & 255) << 16;
208     w0_t[3] = uint_to_hex_lower8 ((b >> 16) & 255) <<  0
209             | uint_to_hex_lower8 ((b >> 24) & 255) << 16;
210     w1_t[0] = uint_to_hex_lower8 ((c >>  0) & 255) <<  0
211             | uint_to_hex_lower8 ((c >>  8) & 255) << 16;
212     w1_t[1] = uint_to_hex_lower8 ((c >> 16) & 255) <<  0
213             | uint_to_hex_lower8 ((c >> 24) & 255) << 16;
214     w1_t[2] = uint_to_hex_lower8 ((d >>  0) & 255) <<  0
215             | uint_to_hex_lower8 ((d >>  8) & 255) << 16;
216     w1_t[3] = uint_to_hex_lower8 ((d >> 16) & 255) <<  0
217             | uint_to_hex_lower8 ((d >> 24) & 255) << 16;
218
219     // add the 4 byte challenge here
220
221     w2_t[0] = challenge;
222     w2_t[1] = 0x00000080;
223     w2_t[2] = 0;
224     w2_t[3] = 0;
225
226     w3_t[0] = 0;
227     w3_t[1] = 0;
228     w3_t[2] = (32 + 4) * 8;
229     w3_t[3] = 0;
230
231     /**
232      * md5 ($hash.$challenge)
233      */
234
235     a = MD5M_A;
236     b = MD5M_B;
237     c = MD5M_C;
238     d = MD5M_D;
239
240     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
241     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
242     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
243     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
244     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
245     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
246     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
247     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
248     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
249     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
250     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
251     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
252     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
253     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
254     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
255     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
256
257     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
258     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
259     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
260     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
261     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
262     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
263     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
264     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
265     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
266     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
267     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
268     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
269     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
270     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
271     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
272     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
273
274     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
275     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
276     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
277     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
278     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
279     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
280     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
281     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
282     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
283     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
284     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
285     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
286     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
287     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
288     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
289     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
290
291     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
292     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
293     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
294     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
295     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
296     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
297     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
298     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
299     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
300     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
301     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
302     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
303     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
304     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
305     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
306     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
307
308     const u32 r0 = a;
309     const u32 r1 = d;
310     const u32 r2 = c;
311     const u32 r3 = b;
312
313     #include COMPARE_M
314   }
315 }
316
317 static void m11100s (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], const u32 pw_len, __global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, __local u32 l_bin2asc[256])
318 {
319   /**
320    * modifier
321    */
322
323   const u32 gid = get_global_id (0);
324   const u32 lid = get_local_id (0);
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    * challenge
340    */
341
342   u32 challenge;
343
344   challenge = salt_bufs[salt_pos].salt_buf[0];
345
346   /**
347    * salt
348    */
349
350   u32 salt_buf0[4];
351
352   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 1]; // not a bug
353   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 2];
354   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 3];
355   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 4];
356
357   u32 salt_buf1[4];
358
359   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 5];
360   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 6];
361   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 7];
362   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 8];
363
364   u32 salt_buf2[4];
365
366   salt_buf2[0] = 0;
367   salt_buf2[1] = 0;
368   salt_buf2[2] = 0;
369   salt_buf2[3] = 0;
370
371   u32 salt_buf3[4];
372
373   salt_buf3[0] = 0;
374   salt_buf3[1] = 0;
375   salt_buf3[2] = 0;
376   salt_buf3[3] = 0;
377
378   const u32 salt_len = salt_bufs[salt_pos].salt_len - 4;
379
380   switch_buffer_by_offset (salt_buf0, salt_buf1, salt_buf2, salt_buf3, pw_len);
381
382   const u32 pw_salt_len = pw_len + salt_len;
383
384   /**
385    * loop
386    */
387
388   u32 w0l = w0[0];
389
390   for (u32 il_pos = 0; il_pos < bfs_cnt; il_pos++)
391   {
392     const u32 w0r = bfs_buf[il_pos].i;
393
394     w0[0] = w0l | w0r;
395
396     u32 w0_t[4];
397
398     w0_t[0] = w0[0] | salt_buf0[0];
399     w0_t[1] = w0[1] | salt_buf0[1];
400     w0_t[2] = w0[2] | salt_buf0[2];
401     w0_t[3] = w0[3] | salt_buf0[3];
402
403     u32 w1_t[4];
404
405     w1_t[0] = w1[0] | salt_buf1[0];
406     w1_t[1] = w1[1] | salt_buf1[1];
407     w1_t[2] = w1[2] | salt_buf1[2];
408     w1_t[3] = w1[3] | salt_buf1[3];
409
410     u32 w2_t[4];
411
412     w2_t[0] = w2[0] | salt_buf2[0];
413     w2_t[1] = w2[1] | salt_buf2[1];
414     w2_t[2] = w2[2] | salt_buf2[2];
415     w2_t[3] = w2[3] | salt_buf2[3];
416
417     u32 w3_t[4];
418
419     w3_t[0] = w3[0] | salt_buf3[0];
420     w3_t[1] = w3[1] | salt_buf3[1];
421     w3_t[2] = pw_salt_len * 8;
422     w3_t[3] = 0;
423
424     /*
425      * md5 ($pass.$salt)
426      */
427
428     u32 a = MD5M_A;
429     u32 b = MD5M_B;
430     u32 c = MD5M_C;
431     u32 d = MD5M_D;
432
433     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
434     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
435     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
436     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
437     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
438     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
439     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
440     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
441     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
442     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
443     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
444     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
445     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
446     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
447     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
448     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
449
450     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
451     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
452     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
453     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
454     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
455     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
456     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
457     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
458     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
459     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
460     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
461     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
462     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
463     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
464     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
465     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
466
467     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
468     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
469     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
470     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
471     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
472     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
473     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
474     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
475     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
476     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
477     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
478     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
479     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
480     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
481     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
482     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
483
484     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
485     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
486     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
487     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
488     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
489     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
490     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
491     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
492     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
493     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
494     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
495     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
496     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
497     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
498     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
499     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
500
501     a += MD5M_A;
502     b += MD5M_B;
503     c += MD5M_C;
504     d += MD5M_D;
505
506     w0_t[0] = uint_to_hex_lower8 ((a >>  0) & 255) <<  0
507             | uint_to_hex_lower8 ((a >>  8) & 255) << 16;
508     w0_t[1] = uint_to_hex_lower8 ((a >> 16) & 255) <<  0
509             | uint_to_hex_lower8 ((a >> 24) & 255) << 16;
510     w0_t[2] = uint_to_hex_lower8 ((b >>  0) & 255) <<  0
511             | uint_to_hex_lower8 ((b >>  8) & 255) << 16;
512     w0_t[3] = uint_to_hex_lower8 ((b >> 16) & 255) <<  0
513             | uint_to_hex_lower8 ((b >> 24) & 255) << 16;
514     w1_t[0] = uint_to_hex_lower8 ((c >>  0) & 255) <<  0
515             | uint_to_hex_lower8 ((c >>  8) & 255) << 16;
516     w1_t[1] = uint_to_hex_lower8 ((c >> 16) & 255) <<  0
517             | uint_to_hex_lower8 ((c >> 24) & 255) << 16;
518     w1_t[2] = uint_to_hex_lower8 ((d >>  0) & 255) <<  0
519             | uint_to_hex_lower8 ((d >>  8) & 255) << 16;
520     w1_t[3] = uint_to_hex_lower8 ((d >> 16) & 255) <<  0
521             | uint_to_hex_lower8 ((d >> 24) & 255) << 16;
522
523     // add the 4 byte challenge here
524
525     w2_t[0] = challenge;
526     w2_t[1] = 0x00000080;
527     w2_t[2] = 0;
528     w2_t[3] = 0;
529
530     w3_t[0] = 0;
531     w3_t[1] = 0;
532     w3_t[2] = (32 + 4) * 8;
533     w3_t[3] = 0;
534
535     /**
536      * md5 ($hash.$challenge)
537      */
538
539     a = MD5M_A;
540     b = MD5M_B;
541     c = MD5M_C;
542     d = MD5M_D;
543
544     MD5_STEP (MD5_Fo, a, b, c, d, w0_t[0], MD5C00, MD5S00);
545     MD5_STEP (MD5_Fo, d, a, b, c, w0_t[1], MD5C01, MD5S01);
546     MD5_STEP (MD5_Fo, c, d, a, b, w0_t[2], MD5C02, MD5S02);
547     MD5_STEP (MD5_Fo, b, c, d, a, w0_t[3], MD5C03, MD5S03);
548     MD5_STEP (MD5_Fo, a, b, c, d, w1_t[0], MD5C04, MD5S00);
549     MD5_STEP (MD5_Fo, d, a, b, c, w1_t[1], MD5C05, MD5S01);
550     MD5_STEP (MD5_Fo, c, d, a, b, w1_t[2], MD5C06, MD5S02);
551     MD5_STEP (MD5_Fo, b, c, d, a, w1_t[3], MD5C07, MD5S03);
552     MD5_STEP (MD5_Fo, a, b, c, d, w2_t[0], MD5C08, MD5S00);
553     MD5_STEP (MD5_Fo, d, a, b, c, w2_t[1], MD5C09, MD5S01);
554     MD5_STEP (MD5_Fo, c, d, a, b, w2_t[2], MD5C0a, MD5S02);
555     MD5_STEP (MD5_Fo, b, c, d, a, w2_t[3], MD5C0b, MD5S03);
556     MD5_STEP (MD5_Fo, a, b, c, d, w3_t[0], MD5C0c, MD5S00);
557     MD5_STEP (MD5_Fo, d, a, b, c, w3_t[1], MD5C0d, MD5S01);
558     MD5_STEP (MD5_Fo, c, d, a, b, w3_t[2], MD5C0e, MD5S02);
559     MD5_STEP (MD5_Fo, b, c, d, a, w3_t[3], MD5C0f, MD5S03);
560
561     MD5_STEP (MD5_Go, a, b, c, d, w0_t[1], MD5C10, MD5S10);
562     MD5_STEP (MD5_Go, d, a, b, c, w1_t[2], MD5C11, MD5S11);
563     MD5_STEP (MD5_Go, c, d, a, b, w2_t[3], MD5C12, MD5S12);
564     MD5_STEP (MD5_Go, b, c, d, a, w0_t[0], MD5C13, MD5S13);
565     MD5_STEP (MD5_Go, a, b, c, d, w1_t[1], MD5C14, MD5S10);
566     MD5_STEP (MD5_Go, d, a, b, c, w2_t[2], MD5C15, MD5S11);
567     MD5_STEP (MD5_Go, c, d, a, b, w3_t[3], MD5C16, MD5S12);
568     MD5_STEP (MD5_Go, b, c, d, a, w1_t[0], MD5C17, MD5S13);
569     MD5_STEP (MD5_Go, a, b, c, d, w2_t[1], MD5C18, MD5S10);
570     MD5_STEP (MD5_Go, d, a, b, c, w3_t[2], MD5C19, MD5S11);
571     MD5_STEP (MD5_Go, c, d, a, b, w0_t[3], MD5C1a, MD5S12);
572     MD5_STEP (MD5_Go, b, c, d, a, w2_t[0], MD5C1b, MD5S13);
573     MD5_STEP (MD5_Go, a, b, c, d, w3_t[1], MD5C1c, MD5S10);
574     MD5_STEP (MD5_Go, d, a, b, c, w0_t[2], MD5C1d, MD5S11);
575     MD5_STEP (MD5_Go, c, d, a, b, w1_t[3], MD5C1e, MD5S12);
576     MD5_STEP (MD5_Go, b, c, d, a, w3_t[0], MD5C1f, MD5S13);
577
578     MD5_STEP (MD5_H , a, b, c, d, w1_t[1], MD5C20, MD5S20);
579     MD5_STEP (MD5_H , d, a, b, c, w2_t[0], MD5C21, MD5S21);
580     MD5_STEP (MD5_H , c, d, a, b, w2_t[3], MD5C22, MD5S22);
581     MD5_STEP (MD5_H , b, c, d, a, w3_t[2], MD5C23, MD5S23);
582     MD5_STEP (MD5_H , a, b, c, d, w0_t[1], MD5C24, MD5S20);
583     MD5_STEP (MD5_H , d, a, b, c, w1_t[0], MD5C25, MD5S21);
584     MD5_STEP (MD5_H , c, d, a, b, w1_t[3], MD5C26, MD5S22);
585     MD5_STEP (MD5_H , b, c, d, a, w2_t[2], MD5C27, MD5S23);
586     MD5_STEP (MD5_H , a, b, c, d, w3_t[1], MD5C28, MD5S20);
587     MD5_STEP (MD5_H , d, a, b, c, w0_t[0], MD5C29, MD5S21);
588     MD5_STEP (MD5_H , c, d, a, b, w0_t[3], MD5C2a, MD5S22);
589     MD5_STEP (MD5_H , b, c, d, a, w1_t[2], MD5C2b, MD5S23);
590     MD5_STEP (MD5_H , a, b, c, d, w2_t[1], MD5C2c, MD5S20);
591     MD5_STEP (MD5_H , d, a, b, c, w3_t[0], MD5C2d, MD5S21);
592     MD5_STEP (MD5_H , c, d, a, b, w3_t[3], MD5C2e, MD5S22);
593     MD5_STEP (MD5_H , b, c, d, a, w0_t[2], MD5C2f, MD5S23);
594
595     MD5_STEP (MD5_I , a, b, c, d, w0_t[0], MD5C30, MD5S30);
596     MD5_STEP (MD5_I , d, a, b, c, w1_t[3], MD5C31, MD5S31);
597     MD5_STEP (MD5_I , c, d, a, b, w3_t[2], MD5C32, MD5S32);
598     MD5_STEP (MD5_I , b, c, d, a, w1_t[1], MD5C33, MD5S33);
599     MD5_STEP (MD5_I , a, b, c, d, w3_t[0], MD5C34, MD5S30);
600     MD5_STEP (MD5_I , d, a, b, c, w0_t[3], MD5C35, MD5S31);
601     MD5_STEP (MD5_I , c, d, a, b, w2_t[2], MD5C36, MD5S32);
602     MD5_STEP (MD5_I , b, c, d, a, w0_t[1], MD5C37, MD5S33);
603     MD5_STEP (MD5_I , a, b, c, d, w2_t[0], MD5C38, MD5S30);
604     MD5_STEP (MD5_I , d, a, b, c, w3_t[3], MD5C39, MD5S31);
605     MD5_STEP (MD5_I , c, d, a, b, w1_t[2], MD5C3a, MD5S32);
606     MD5_STEP (MD5_I , b, c, d, a, w3_t[1], MD5C3b, MD5S33);
607     MD5_STEP (MD5_I , a, b, c, d, w1_t[0], MD5C3c, MD5S30);
608     MD5_STEP (MD5_I , d, a, b, c, w2_t[3], MD5C3d, MD5S31);
609     MD5_STEP (MD5_I , c, d, a, b, w0_t[2], MD5C3e, MD5S32);
610     MD5_STEP (MD5_I , b, c, d, a, w2_t[1], MD5C3f, MD5S33);
611
612     const u32 r0 = a;
613     const u32 r1 = d;
614     const u32 r2 = c;
615     const u32 r3 = b;
616
617     #include COMPARE_S
618   }
619 }
620
621 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m11100_m04 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
622 {
623   /**
624    * base
625    */
626
627   const u32 gid = get_global_id (0);
628
629   /**
630    * modifier
631    */
632
633   const u32 lid = get_local_id (0);
634
635   u32 w0[4];
636
637   w0[0] = pws[gid].i[ 0];
638   w0[1] = pws[gid].i[ 1];
639   w0[2] = pws[gid].i[ 2];
640   w0[3] = pws[gid].i[ 3];
641
642   u32 w1[4];
643
644   w1[0] = 0;
645   w1[1] = 0;
646   w1[2] = 0;
647   w1[3] = 0;
648
649   u32 w2[4];
650
651   w2[0] = 0;
652   w2[1] = 0;
653   w2[2] = 0;
654   w2[3] = 0;
655
656   u32 w3[4];
657
658   w3[0] = 0;
659   w3[1] = 0;
660   w3[2] = pws[gid].i[14];
661   w3[3] = 0;
662
663   const u32 pw_len = pws[gid].pw_len;
664
665   /**
666    * bin2asc table
667    */
668
669   __local u32 l_bin2asc[256];
670
671   const u32 lid4 = lid * 4;
672
673   const u32 lid40 = lid4 + 0;
674   const u32 lid41 = lid4 + 1;
675   const u32 lid42 = lid4 + 2;
676   const u32 lid43 = lid4 + 3;
677
678   const u32 v400 = (lid40 >> 0) & 15;
679   const u32 v401 = (lid40 >> 4) & 15;
680   const u32 v410 = (lid41 >> 0) & 15;
681   const u32 v411 = (lid41 >> 4) & 15;
682   const u32 v420 = (lid42 >> 0) & 15;
683   const u32 v421 = (lid42 >> 4) & 15;
684   const u32 v430 = (lid43 >> 0) & 15;
685   const u32 v431 = (lid43 >> 4) & 15;
686
687   l_bin2asc[lid40] = ((v400 < 10) ? '0' + v400 : 'a' - 10 + v400) << 8
688                    | ((v401 < 10) ? '0' + v401 : 'a' - 10 + v401) << 0;
689   l_bin2asc[lid41] = ((v410 < 10) ? '0' + v410 : 'a' - 10 + v410) << 8
690                    | ((v411 < 10) ? '0' + v411 : 'a' - 10 + v411) << 0;
691   l_bin2asc[lid42] = ((v420 < 10) ? '0' + v420 : 'a' - 10 + v420) << 8
692                    | ((v421 < 10) ? '0' + v421 : 'a' - 10 + v421) << 0;
693   l_bin2asc[lid43] = ((v430 < 10) ? '0' + v430 : 'a' - 10 + v430) << 8
694                    | ((v431 < 10) ? '0' + v431 : 'a' - 10 + v431) << 0;
695
696   barrier (CLK_LOCAL_MEM_FENCE);
697
698   if (gid >= gid_max) return;
699
700   /**
701    * main
702    */
703
704   m11100m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, 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, l_bin2asc);
705 }
706
707 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m11100_m08 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
708 {
709   /**
710    * base
711    */
712
713   const u32 gid = get_global_id (0);
714
715   /**
716    * modifier
717    */
718
719   const u32 lid = get_local_id (0);
720
721   u32 w0[4];
722
723   w0[0] = pws[gid].i[ 0];
724   w0[1] = pws[gid].i[ 1];
725   w0[2] = pws[gid].i[ 2];
726   w0[3] = pws[gid].i[ 3];
727
728   u32 w1[4];
729
730   w1[0] = pws[gid].i[ 4];
731   w1[1] = pws[gid].i[ 5];
732   w1[2] = pws[gid].i[ 6];
733   w1[3] = pws[gid].i[ 7];
734
735   u32 w2[4];
736
737   w2[0] = 0;
738   w2[1] = 0;
739   w2[2] = 0;
740   w2[3] = 0;
741
742   u32 w3[4];
743
744   w3[0] = 0;
745   w3[1] = 0;
746   w3[2] = pws[gid].i[14];
747   w3[3] = 0;
748
749   const u32 pw_len = pws[gid].pw_len;
750
751   /**
752    * bin2asc table
753    */
754
755   __local u32 l_bin2asc[256];
756
757   const u32 lid4 = lid * 4;
758
759   const u32 lid40 = lid4 + 0;
760   const u32 lid41 = lid4 + 1;
761   const u32 lid42 = lid4 + 2;
762   const u32 lid43 = lid4 + 3;
763
764   const u32 v400 = (lid40 >> 0) & 15;
765   const u32 v401 = (lid40 >> 4) & 15;
766   const u32 v410 = (lid41 >> 0) & 15;
767   const u32 v411 = (lid41 >> 4) & 15;
768   const u32 v420 = (lid42 >> 0) & 15;
769   const u32 v421 = (lid42 >> 4) & 15;
770   const u32 v430 = (lid43 >> 0) & 15;
771   const u32 v431 = (lid43 >> 4) & 15;
772
773   l_bin2asc[lid40] = ((v400 < 10) ? '0' + v400 : 'a' - 10 + v400) << 8
774                    | ((v401 < 10) ? '0' + v401 : 'a' - 10 + v401) << 0;
775   l_bin2asc[lid41] = ((v410 < 10) ? '0' + v410 : 'a' - 10 + v410) << 8
776                    | ((v411 < 10) ? '0' + v411 : 'a' - 10 + v411) << 0;
777   l_bin2asc[lid42] = ((v420 < 10) ? '0' + v420 : 'a' - 10 + v420) << 8
778                    | ((v421 < 10) ? '0' + v421 : 'a' - 10 + v421) << 0;
779   l_bin2asc[lid43] = ((v430 < 10) ? '0' + v430 : 'a' - 10 + v430) << 8
780                    | ((v431 < 10) ? '0' + v431 : 'a' - 10 + v431) << 0;
781
782   barrier (CLK_LOCAL_MEM_FENCE);
783
784   if (gid >= gid_max) return;
785
786   /**
787    * main
788    */
789
790   m11100m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, 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, l_bin2asc);
791 }
792
793 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m11100_m16 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
794 {
795   /**
796    * base
797    */
798
799   const u32 gid = get_global_id (0);
800
801   /**
802    * modifier
803    */
804
805   const u32 lid = get_local_id (0);
806
807   u32 w0[4];
808
809   w0[0] = pws[gid].i[ 0];
810   w0[1] = pws[gid].i[ 1];
811   w0[2] = pws[gid].i[ 2];
812   w0[3] = pws[gid].i[ 3];
813
814   u32 w1[4];
815
816   w1[0] = pws[gid].i[ 4];
817   w1[1] = pws[gid].i[ 5];
818   w1[2] = pws[gid].i[ 6];
819   w1[3] = pws[gid].i[ 7];
820
821   u32 w2[4];
822
823   w2[0] = pws[gid].i[ 8];
824   w2[1] = pws[gid].i[ 9];
825   w2[2] = pws[gid].i[10];
826   w2[3] = pws[gid].i[11];
827
828   u32 w3[4];
829
830   w3[0] = pws[gid].i[12];
831   w3[1] = pws[gid].i[13];
832   w3[2] = pws[gid].i[14];
833   w3[3] = pws[gid].i[15];
834
835   const u32 pw_len = pws[gid].pw_len;
836
837   /**
838    * bin2asc table
839    */
840
841   __local u32 l_bin2asc[256];
842
843   const u32 lid4 = lid * 4;
844
845   const u32 lid40 = lid4 + 0;
846   const u32 lid41 = lid4 + 1;
847   const u32 lid42 = lid4 + 2;
848   const u32 lid43 = lid4 + 3;
849
850   const u32 v400 = (lid40 >> 0) & 15;
851   const u32 v401 = (lid40 >> 4) & 15;
852   const u32 v410 = (lid41 >> 0) & 15;
853   const u32 v411 = (lid41 >> 4) & 15;
854   const u32 v420 = (lid42 >> 0) & 15;
855   const u32 v421 = (lid42 >> 4) & 15;
856   const u32 v430 = (lid43 >> 0) & 15;
857   const u32 v431 = (lid43 >> 4) & 15;
858
859   l_bin2asc[lid40] = ((v400 < 10) ? '0' + v400 : 'a' - 10 + v400) << 8
860                    | ((v401 < 10) ? '0' + v401 : 'a' - 10 + v401) << 0;
861   l_bin2asc[lid41] = ((v410 < 10) ? '0' + v410 : 'a' - 10 + v410) << 8
862                    | ((v411 < 10) ? '0' + v411 : 'a' - 10 + v411) << 0;
863   l_bin2asc[lid42] = ((v420 < 10) ? '0' + v420 : 'a' - 10 + v420) << 8
864                    | ((v421 < 10) ? '0' + v421 : 'a' - 10 + v421) << 0;
865   l_bin2asc[lid43] = ((v430 < 10) ? '0' + v430 : 'a' - 10 + v430) << 8
866                    | ((v431 < 10) ? '0' + v431 : 'a' - 10 + v431) << 0;
867
868   barrier (CLK_LOCAL_MEM_FENCE);
869
870   if (gid >= gid_max) return;
871
872   /**
873    * main
874    */
875
876   m11100m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, 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, l_bin2asc);
877 }
878
879 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m11100_s04 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
880 {
881   /**
882    * base
883    */
884
885   const u32 gid = get_global_id (0);
886
887   /**
888    * modifier
889    */
890
891   const u32 lid = get_local_id (0);
892
893   u32 w0[4];
894
895   w0[0] = pws[gid].i[ 0];
896   w0[1] = pws[gid].i[ 1];
897   w0[2] = pws[gid].i[ 2];
898   w0[3] = pws[gid].i[ 3];
899
900   u32 w1[4];
901
902   w1[0] = 0;
903   w1[1] = 0;
904   w1[2] = 0;
905   w1[3] = 0;
906
907   u32 w2[4];
908
909   w2[0] = 0;
910   w2[1] = 0;
911   w2[2] = 0;
912   w2[3] = 0;
913
914   u32 w3[4];
915
916   w3[0] = 0;
917   w3[1] = 0;
918   w3[2] = pws[gid].i[14];
919   w3[3] = 0;
920
921   const u32 pw_len = pws[gid].pw_len;
922
923   /**
924    * bin2asc table
925    */
926
927   __local u32 l_bin2asc[256];
928
929   const u32 lid4 = lid * 4;
930
931   const u32 lid40 = lid4 + 0;
932   const u32 lid41 = lid4 + 1;
933   const u32 lid42 = lid4 + 2;
934   const u32 lid43 = lid4 + 3;
935
936   const u32 v400 = (lid40 >> 0) & 15;
937   const u32 v401 = (lid40 >> 4) & 15;
938   const u32 v410 = (lid41 >> 0) & 15;
939   const u32 v411 = (lid41 >> 4) & 15;
940   const u32 v420 = (lid42 >> 0) & 15;
941   const u32 v421 = (lid42 >> 4) & 15;
942   const u32 v430 = (lid43 >> 0) & 15;
943   const u32 v431 = (lid43 >> 4) & 15;
944
945   l_bin2asc[lid40] = ((v400 < 10) ? '0' + v400 : 'a' - 10 + v400) << 8
946                    | ((v401 < 10) ? '0' + v401 : 'a' - 10 + v401) << 0;
947   l_bin2asc[lid41] = ((v410 < 10) ? '0' + v410 : 'a' - 10 + v410) << 8
948                    | ((v411 < 10) ? '0' + v411 : 'a' - 10 + v411) << 0;
949   l_bin2asc[lid42] = ((v420 < 10) ? '0' + v420 : 'a' - 10 + v420) << 8
950                    | ((v421 < 10) ? '0' + v421 : 'a' - 10 + v421) << 0;
951   l_bin2asc[lid43] = ((v430 < 10) ? '0' + v430 : 'a' - 10 + v430) << 8
952                    | ((v431 < 10) ? '0' + v431 : 'a' - 10 + v431) << 0;
953
954   barrier (CLK_LOCAL_MEM_FENCE);
955
956   if (gid >= gid_max) return;
957
958   /**
959    * main
960    */
961
962   m11100s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, 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, l_bin2asc);
963 }
964
965 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m11100_s08 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
966 {
967   /**
968    * base
969    */
970
971   const u32 gid = get_global_id (0);
972
973   /**
974    * modifier
975    */
976
977   const u32 lid = get_local_id (0);
978
979   u32 w0[4];
980
981   w0[0] = pws[gid].i[ 0];
982   w0[1] = pws[gid].i[ 1];
983   w0[2] = pws[gid].i[ 2];
984   w0[3] = pws[gid].i[ 3];
985
986   u32 w1[4];
987
988   w1[0] = pws[gid].i[ 4];
989   w1[1] = pws[gid].i[ 5];
990   w1[2] = pws[gid].i[ 6];
991   w1[3] = pws[gid].i[ 7];
992
993   u32 w2[4];
994
995   w2[0] = 0;
996   w2[1] = 0;
997   w2[2] = 0;
998   w2[3] = 0;
999
1000   u32 w3[4];
1001
1002   w3[0] = 0;
1003   w3[1] = 0;
1004   w3[2] = pws[gid].i[14];
1005   w3[3] = 0;
1006
1007   const u32 pw_len = pws[gid].pw_len;
1008
1009   /**
1010    * bin2asc table
1011    */
1012
1013   __local u32 l_bin2asc[256];
1014
1015   const u32 lid4 = lid * 4;
1016
1017   const u32 lid40 = lid4 + 0;
1018   const u32 lid41 = lid4 + 1;
1019   const u32 lid42 = lid4 + 2;
1020   const u32 lid43 = lid4 + 3;
1021
1022   const u32 v400 = (lid40 >> 0) & 15;
1023   const u32 v401 = (lid40 >> 4) & 15;
1024   const u32 v410 = (lid41 >> 0) & 15;
1025   const u32 v411 = (lid41 >> 4) & 15;
1026   const u32 v420 = (lid42 >> 0) & 15;
1027   const u32 v421 = (lid42 >> 4) & 15;
1028   const u32 v430 = (lid43 >> 0) & 15;
1029   const u32 v431 = (lid43 >> 4) & 15;
1030
1031   l_bin2asc[lid40] = ((v400 < 10) ? '0' + v400 : 'a' - 10 + v400) << 8
1032                    | ((v401 < 10) ? '0' + v401 : 'a' - 10 + v401) << 0;
1033   l_bin2asc[lid41] = ((v410 < 10) ? '0' + v410 : 'a' - 10 + v410) << 8
1034                    | ((v411 < 10) ? '0' + v411 : 'a' - 10 + v411) << 0;
1035   l_bin2asc[lid42] = ((v420 < 10) ? '0' + v420 : 'a' - 10 + v420) << 8
1036                    | ((v421 < 10) ? '0' + v421 : 'a' - 10 + v421) << 0;
1037   l_bin2asc[lid43] = ((v430 < 10) ? '0' + v430 : 'a' - 10 + v430) << 8
1038                    | ((v431 < 10) ? '0' + v431 : 'a' - 10 + v431) << 0;
1039
1040   barrier (CLK_LOCAL_MEM_FENCE);
1041
1042   if (gid >= gid_max) return;
1043
1044   /**
1045    * main
1046    */
1047
1048   m11100s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, 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, l_bin2asc);
1049 }
1050
1051 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m11100_s16 (__global pw_t *pws, __global gpu_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 bfs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
1052 {
1053   /**
1054    * base
1055    */
1056
1057   const u32 gid = get_global_id (0);
1058
1059   /**
1060    * modifier
1061    */
1062
1063   const u32 lid = get_local_id (0);
1064
1065   u32 w0[4];
1066
1067   w0[0] = pws[gid].i[ 0];
1068   w0[1] = pws[gid].i[ 1];
1069   w0[2] = pws[gid].i[ 2];
1070   w0[3] = pws[gid].i[ 3];
1071
1072   u32 w1[4];
1073
1074   w1[0] = pws[gid].i[ 4];
1075   w1[1] = pws[gid].i[ 5];
1076   w1[2] = pws[gid].i[ 6];
1077   w1[3] = pws[gid].i[ 7];
1078
1079   u32 w2[4];
1080
1081   w2[0] = pws[gid].i[ 8];
1082   w2[1] = pws[gid].i[ 9];
1083   w2[2] = pws[gid].i[10];
1084   w2[3] = pws[gid].i[11];
1085
1086   u32 w3[4];
1087
1088   w3[0] = pws[gid].i[12];
1089   w3[1] = pws[gid].i[13];
1090   w3[2] = pws[gid].i[14];
1091   w3[3] = pws[gid].i[15];
1092
1093   const u32 pw_len = pws[gid].pw_len;
1094
1095   /**
1096    * bin2asc table
1097    */
1098
1099   __local u32 l_bin2asc[256];
1100
1101   const u32 lid4 = lid * 4;
1102
1103   const u32 lid40 = lid4 + 0;
1104   const u32 lid41 = lid4 + 1;
1105   const u32 lid42 = lid4 + 2;
1106   const u32 lid43 = lid4 + 3;
1107
1108   const u32 v400 = (lid40 >> 0) & 15;
1109   const u32 v401 = (lid40 >> 4) & 15;
1110   const u32 v410 = (lid41 >> 0) & 15;
1111   const u32 v411 = (lid41 >> 4) & 15;
1112   const u32 v420 = (lid42 >> 0) & 15;
1113   const u32 v421 = (lid42 >> 4) & 15;
1114   const u32 v430 = (lid43 >> 0) & 15;
1115   const u32 v431 = (lid43 >> 4) & 15;
1116
1117   l_bin2asc[lid40] = ((v400 < 10) ? '0' + v400 : 'a' - 10 + v400) << 8
1118                    | ((v401 < 10) ? '0' + v401 : 'a' - 10 + v401) << 0;
1119   l_bin2asc[lid41] = ((v410 < 10) ? '0' + v410 : 'a' - 10 + v410) << 8
1120                    | ((v411 < 10) ? '0' + v411 : 'a' - 10 + v411) << 0;
1121   l_bin2asc[lid42] = ((v420 < 10) ? '0' + v420 : 'a' - 10 + v420) << 8
1122                    | ((v421 < 10) ? '0' + v421 : 'a' - 10 + v421) << 0;
1123   l_bin2asc[lid43] = ((v430 < 10) ? '0' + v430 : 'a' - 10 + v430) << 8
1124                    | ((v431 < 10) ? '0' + v431 : 'a' - 10 + v431) << 0;
1125
1126   barrier (CLK_LOCAL_MEM_FENCE);
1127
1128   if (gid >= gid_max) return;
1129
1130   /**
1131    * main
1132    */
1133
1134   m11100s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, 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, l_bin2asc);
1135 }