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