Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

sha256_avx2.cpp
Go to the documentation of this file.
1 #ifdef ENABLE_AVX2
2 
3 #include <stdint.h>
4 #include <immintrin.h>
5 
6 #include <crypto/sha256.h>
7 #include <crypto/common.h>
8 
9 namespace sha256d64_avx2 {
10 namespace {
11 
12 __m256i inline K(uint32_t x) { return _mm256_set1_epi32(x); }
13 
14 __m256i inline Add(__m256i x, __m256i y) { return _mm256_add_epi32(x, y); }
15 __m256i inline Add(__m256i x, __m256i y, __m256i z) { return Add(Add(x, y), z); }
16 __m256i inline Add(__m256i x, __m256i y, __m256i z, __m256i w) { return Add(Add(x, y), Add(z, w)); }
17 __m256i inline Add(__m256i x, __m256i y, __m256i z, __m256i w, __m256i v) { return Add(Add(x, y, z), Add(w, v)); }
18 __m256i inline Inc(__m256i& x, __m256i y) { x = Add(x, y); return x; }
19 __m256i inline Inc(__m256i& x, __m256i y, __m256i z) { x = Add(x, y, z); return x; }
20 __m256i inline Inc(__m256i& x, __m256i y, __m256i z, __m256i w) { x = Add(x, y, z, w); return x; }
21 __m256i inline Xor(__m256i x, __m256i y) { return _mm256_xor_si256(x, y); }
22 __m256i inline Xor(__m256i x, __m256i y, __m256i z) { return Xor(Xor(x, y), z); }
23 __m256i inline Or(__m256i x, __m256i y) { return _mm256_or_si256(x, y); }
24 __m256i inline And(__m256i x, __m256i y) { return _mm256_and_si256(x, y); }
25 __m256i inline ShR(__m256i x, int n) { return _mm256_srli_epi32(x, n); }
26 __m256i inline ShL(__m256i x, int n) { return _mm256_slli_epi32(x, n); }
27 
28 __m256i inline Ch(__m256i x, __m256i y, __m256i z) { return Xor(z, And(x, Xor(y, z))); }
29 __m256i inline Maj(__m256i x, __m256i y, __m256i z) { return Or(And(x, y), And(z, Or(x, y))); }
30 __m256i inline Sigma0(__m256i x) { return Xor(Or(ShR(x, 2), ShL(x, 30)), Or(ShR(x, 13), ShL(x, 19)), Or(ShR(x, 22), ShL(x, 10))); }
31 __m256i inline Sigma1(__m256i x) { return Xor(Or(ShR(x, 6), ShL(x, 26)), Or(ShR(x, 11), ShL(x, 21)), Or(ShR(x, 25), ShL(x, 7))); }
32 __m256i inline sigma0(__m256i x) { return Xor(Or(ShR(x, 7), ShL(x, 25)), Or(ShR(x, 18), ShL(x, 14)), ShR(x, 3)); }
33 __m256i inline sigma1(__m256i x) { return Xor(Or(ShR(x, 17), ShL(x, 15)), Or(ShR(x, 19), ShL(x, 13)), ShR(x, 10)); }
34 
36 void inline __attribute__((always_inline)) Round(__m256i a, __m256i b, __m256i c, __m256i& d, __m256i e, __m256i f, __m256i g, __m256i& h, __m256i k)
37 {
38  __m256i t1 = Add(h, Sigma1(e), Ch(e, f, g), k);
39  __m256i t2 = Add(Sigma0(a), Maj(a, b, c));
40  d = Add(d, t1);
41  h = Add(t1, t2);
42 }
43 
44 __m256i inline Read8(const unsigned char* chunk, int offset) {
45  __m256i ret = _mm256_set_epi32(
46  ReadLE32(chunk + 0 + offset),
47  ReadLE32(chunk + 64 + offset),
48  ReadLE32(chunk + 128 + offset),
49  ReadLE32(chunk + 192 + offset),
50  ReadLE32(chunk + 256 + offset),
51  ReadLE32(chunk + 320 + offset),
52  ReadLE32(chunk + 384 + offset),
53  ReadLE32(chunk + 448 + offset)
54  );
55  return _mm256_shuffle_epi8(ret, _mm256_set_epi32(0x0C0D0E0FUL, 0x08090A0BUL, 0x04050607UL, 0x00010203UL, 0x0C0D0E0FUL, 0x08090A0BUL, 0x04050607UL, 0x00010203UL));
56 }
57 
58 void inline Write8(unsigned char* out, int offset, __m256i v) {
59  v = _mm256_shuffle_epi8(v, _mm256_set_epi32(0x0C0D0E0FUL, 0x08090A0BUL, 0x04050607UL, 0x00010203UL, 0x0C0D0E0FUL, 0x08090A0BUL, 0x04050607UL, 0x00010203UL));
60  WriteLE32(out + 0 + offset, _mm256_extract_epi32(v, 7));
61  WriteLE32(out + 32 + offset, _mm256_extract_epi32(v, 6));
62  WriteLE32(out + 64 + offset, _mm256_extract_epi32(v, 5));
63  WriteLE32(out + 96 + offset, _mm256_extract_epi32(v, 4));
64  WriteLE32(out + 128 + offset, _mm256_extract_epi32(v, 3));
65  WriteLE32(out + 160 + offset, _mm256_extract_epi32(v, 2));
66  WriteLE32(out + 192 + offset, _mm256_extract_epi32(v, 1));
67  WriteLE32(out + 224 + offset, _mm256_extract_epi32(v, 0));
68 }
69 
70 }
71 
72 void Transform_8way(unsigned char* out, const unsigned char* in)
73 {
74  // Transform 1
75  __m256i a = K(0x6a09e667ul);
76  __m256i b = K(0xbb67ae85ul);
77  __m256i c = K(0x3c6ef372ul);
78  __m256i d = K(0xa54ff53aul);
79  __m256i e = K(0x510e527ful);
80  __m256i f = K(0x9b05688cul);
81  __m256i g = K(0x1f83d9abul);
82  __m256i h = K(0x5be0cd19ul);
83 
84  __m256i w0, w1, w2, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14, w15;
85 
86  Round(a, b, c, d, e, f, g, h, Add(K(0x428a2f98ul), w0 = Read8(in, 0)));
87  Round(h, a, b, c, d, e, f, g, Add(K(0x71374491ul), w1 = Read8(in, 4)));
88  Round(g, h, a, b, c, d, e, f, Add(K(0xb5c0fbcful), w2 = Read8(in, 8)));
89  Round(f, g, h, a, b, c, d, e, Add(K(0xe9b5dba5ul), w3 = Read8(in, 12)));
90  Round(e, f, g, h, a, b, c, d, Add(K(0x3956c25bul), w4 = Read8(in, 16)));
91  Round(d, e, f, g, h, a, b, c, Add(K(0x59f111f1ul), w5 = Read8(in, 20)));
92  Round(c, d, e, f, g, h, a, b, Add(K(0x923f82a4ul), w6 = Read8(in, 24)));
93  Round(b, c, d, e, f, g, h, a, Add(K(0xab1c5ed5ul), w7 = Read8(in, 28)));
94  Round(a, b, c, d, e, f, g, h, Add(K(0xd807aa98ul), w8 = Read8(in, 32)));
95  Round(h, a, b, c, d, e, f, g, Add(K(0x12835b01ul), w9 = Read8(in, 36)));
96  Round(g, h, a, b, c, d, e, f, Add(K(0x243185beul), w10 = Read8(in, 40)));
97  Round(f, g, h, a, b, c, d, e, Add(K(0x550c7dc3ul), w11 = Read8(in, 44)));
98  Round(e, f, g, h, a, b, c, d, Add(K(0x72be5d74ul), w12 = Read8(in, 48)));
99  Round(d, e, f, g, h, a, b, c, Add(K(0x80deb1feul), w13 = Read8(in, 52)));
100  Round(c, d, e, f, g, h, a, b, Add(K(0x9bdc06a7ul), w14 = Read8(in, 56)));
101  Round(b, c, d, e, f, g, h, a, Add(K(0xc19bf174ul), w15 = Read8(in, 60)));
102  Round(a, b, c, d, e, f, g, h, Add(K(0xe49b69c1ul), Inc(w0, sigma1(w14), w9, sigma0(w1))));
103  Round(h, a, b, c, d, e, f, g, Add(K(0xefbe4786ul), Inc(w1, sigma1(w15), w10, sigma0(w2))));
104  Round(g, h, a, b, c, d, e, f, Add(K(0x0fc19dc6ul), Inc(w2, sigma1(w0), w11, sigma0(w3))));
105  Round(f, g, h, a, b, c, d, e, Add(K(0x240ca1ccul), Inc(w3, sigma1(w1), w12, sigma0(w4))));
106  Round(e, f, g, h, a, b, c, d, Add(K(0x2de92c6ful), Inc(w4, sigma1(w2), w13, sigma0(w5))));
107  Round(d, e, f, g, h, a, b, c, Add(K(0x4a7484aaul), Inc(w5, sigma1(w3), w14, sigma0(w6))));
108  Round(c, d, e, f, g, h, a, b, Add(K(0x5cb0a9dcul), Inc(w6, sigma1(w4), w15, sigma0(w7))));
109  Round(b, c, d, e, f, g, h, a, Add(K(0x76f988daul), Inc(w7, sigma1(w5), w0, sigma0(w8))));
110  Round(a, b, c, d, e, f, g, h, Add(K(0x983e5152ul), Inc(w8, sigma1(w6), w1, sigma0(w9))));
111  Round(h, a, b, c, d, e, f, g, Add(K(0xa831c66dul), Inc(w9, sigma1(w7), w2, sigma0(w10))));
112  Round(g, h, a, b, c, d, e, f, Add(K(0xb00327c8ul), Inc(w10, sigma1(w8), w3, sigma0(w11))));
113  Round(f, g, h, a, b, c, d, e, Add(K(0xbf597fc7ul), Inc(w11, sigma1(w9), w4, sigma0(w12))));
114  Round(e, f, g, h, a, b, c, d, Add(K(0xc6e00bf3ul), Inc(w12, sigma1(w10), w5, sigma0(w13))));
115  Round(d, e, f, g, h, a, b, c, Add(K(0xd5a79147ul), Inc(w13, sigma1(w11), w6, sigma0(w14))));
116  Round(c, d, e, f, g, h, a, b, Add(K(0x06ca6351ul), Inc(w14, sigma1(w12), w7, sigma0(w15))));
117  Round(b, c, d, e, f, g, h, a, Add(K(0x14292967ul), Inc(w15, sigma1(w13), w8, sigma0(w0))));
118  Round(a, b, c, d, e, f, g, h, Add(K(0x27b70a85ul), Inc(w0, sigma1(w14), w9, sigma0(w1))));
119  Round(h, a, b, c, d, e, f, g, Add(K(0x2e1b2138ul), Inc(w1, sigma1(w15), w10, sigma0(w2))));
120  Round(g, h, a, b, c, d, e, f, Add(K(0x4d2c6dfcul), Inc(w2, sigma1(w0), w11, sigma0(w3))));
121  Round(f, g, h, a, b, c, d, e, Add(K(0x53380d13ul), Inc(w3, sigma1(w1), w12, sigma0(w4))));
122  Round(e, f, g, h, a, b, c, d, Add(K(0x650a7354ul), Inc(w4, sigma1(w2), w13, sigma0(w5))));
123  Round(d, e, f, g, h, a, b, c, Add(K(0x766a0abbul), Inc(w5, sigma1(w3), w14, sigma0(w6))));
124  Round(c, d, e, f, g, h, a, b, Add(K(0x81c2c92eul), Inc(w6, sigma1(w4), w15, sigma0(w7))));
125  Round(b, c, d, e, f, g, h, a, Add(K(0x92722c85ul), Inc(w7, sigma1(w5), w0, sigma0(w8))));
126  Round(a, b, c, d, e, f, g, h, Add(K(0xa2bfe8a1ul), Inc(w8, sigma1(w6), w1, sigma0(w9))));
127  Round(h, a, b, c, d, e, f, g, Add(K(0xa81a664bul), Inc(w9, sigma1(w7), w2, sigma0(w10))));
128  Round(g, h, a, b, c, d, e, f, Add(K(0xc24b8b70ul), Inc(w10, sigma1(w8), w3, sigma0(w11))));
129  Round(f, g, h, a, b, c, d, e, Add(K(0xc76c51a3ul), Inc(w11, sigma1(w9), w4, sigma0(w12))));
130  Round(e, f, g, h, a, b, c, d, Add(K(0xd192e819ul), Inc(w12, sigma1(w10), w5, sigma0(w13))));
131  Round(d, e, f, g, h, a, b, c, Add(K(0xd6990624ul), Inc(w13, sigma1(w11), w6, sigma0(w14))));
132  Round(c, d, e, f, g, h, a, b, Add(K(0xf40e3585ul), Inc(w14, sigma1(w12), w7, sigma0(w15))));
133  Round(b, c, d, e, f, g, h, a, Add(K(0x106aa070ul), Inc(w15, sigma1(w13), w8, sigma0(w0))));
134  Round(a, b, c, d, e, f, g, h, Add(K(0x19a4c116ul), Inc(w0, sigma1(w14), w9, sigma0(w1))));
135  Round(h, a, b, c, d, e, f, g, Add(K(0x1e376c08ul), Inc(w1, sigma1(w15), w10, sigma0(w2))));
136  Round(g, h, a, b, c, d, e, f, Add(K(0x2748774cul), Inc(w2, sigma1(w0), w11, sigma0(w3))));
137  Round(f, g, h, a, b, c, d, e, Add(K(0x34b0bcb5ul), Inc(w3, sigma1(w1), w12, sigma0(w4))));
138  Round(e, f, g, h, a, b, c, d, Add(K(0x391c0cb3ul), Inc(w4, sigma1(w2), w13, sigma0(w5))));
139  Round(d, e, f, g, h, a, b, c, Add(K(0x4ed8aa4aul), Inc(w5, sigma1(w3), w14, sigma0(w6))));
140  Round(c, d, e, f, g, h, a, b, Add(K(0x5b9cca4ful), Inc(w6, sigma1(w4), w15, sigma0(w7))));
141  Round(b, c, d, e, f, g, h, a, Add(K(0x682e6ff3ul), Inc(w7, sigma1(w5), w0, sigma0(w8))));
142  Round(a, b, c, d, e, f, g, h, Add(K(0x748f82eeul), Inc(w8, sigma1(w6), w1, sigma0(w9))));
143  Round(h, a, b, c, d, e, f, g, Add(K(0x78a5636ful), Inc(w9, sigma1(w7), w2, sigma0(w10))));
144  Round(g, h, a, b, c, d, e, f, Add(K(0x84c87814ul), Inc(w10, sigma1(w8), w3, sigma0(w11))));
145  Round(f, g, h, a, b, c, d, e, Add(K(0x8cc70208ul), Inc(w11, sigma1(w9), w4, sigma0(w12))));
146  Round(e, f, g, h, a, b, c, d, Add(K(0x90befffaul), Inc(w12, sigma1(w10), w5, sigma0(w13))));
147  Round(d, e, f, g, h, a, b, c, Add(K(0xa4506cebul), Inc(w13, sigma1(w11), w6, sigma0(w14))));
148  Round(c, d, e, f, g, h, a, b, Add(K(0xbef9a3f7ul), Inc(w14, sigma1(w12), w7, sigma0(w15))));
149  Round(b, c, d, e, f, g, h, a, Add(K(0xc67178f2ul), Inc(w15, sigma1(w13), w8, sigma0(w0))));
150 
151  a = Add(a, K(0x6a09e667ul));
152  b = Add(b, K(0xbb67ae85ul));
153  c = Add(c, K(0x3c6ef372ul));
154  d = Add(d, K(0xa54ff53aul));
155  e = Add(e, K(0x510e527ful));
156  f = Add(f, K(0x9b05688cul));
157  g = Add(g, K(0x1f83d9abul));
158  h = Add(h, K(0x5be0cd19ul));
159 
160  __m256i t0 = a, t1 = b, t2 = c, t3 = d, t4 = e, t5 = f, t6 = g, t7 = h;
161 
162  // Transform 2
163  Round(a, b, c, d, e, f, g, h, K(0xc28a2f98ul));
164  Round(h, a, b, c, d, e, f, g, K(0x71374491ul));
165  Round(g, h, a, b, c, d, e, f, K(0xb5c0fbcful));
166  Round(f, g, h, a, b, c, d, e, K(0xe9b5dba5ul));
167  Round(e, f, g, h, a, b, c, d, K(0x3956c25bul));
168  Round(d, e, f, g, h, a, b, c, K(0x59f111f1ul));
169  Round(c, d, e, f, g, h, a, b, K(0x923f82a4ul));
170  Round(b, c, d, e, f, g, h, a, K(0xab1c5ed5ul));
171  Round(a, b, c, d, e, f, g, h, K(0xd807aa98ul));
172  Round(h, a, b, c, d, e, f, g, K(0x12835b01ul));
173  Round(g, h, a, b, c, d, e, f, K(0x243185beul));
174  Round(f, g, h, a, b, c, d, e, K(0x550c7dc3ul));
175  Round(e, f, g, h, a, b, c, d, K(0x72be5d74ul));
176  Round(d, e, f, g, h, a, b, c, K(0x80deb1feul));
177  Round(c, d, e, f, g, h, a, b, K(0x9bdc06a7ul));
178  Round(b, c, d, e, f, g, h, a, K(0xc19bf374ul));
179  Round(a, b, c, d, e, f, g, h, K(0x649b69c1ul));
180  Round(h, a, b, c, d, e, f, g, K(0xf0fe4786ul));
181  Round(g, h, a, b, c, d, e, f, K(0x0fe1edc6ul));
182  Round(f, g, h, a, b, c, d, e, K(0x240cf254ul));
183  Round(e, f, g, h, a, b, c, d, K(0x4fe9346ful));
184  Round(d, e, f, g, h, a, b, c, K(0x6cc984beul));
185  Round(c, d, e, f, g, h, a, b, K(0x61b9411eul));
186  Round(b, c, d, e, f, g, h, a, K(0x16f988faul));
187  Round(a, b, c, d, e, f, g, h, K(0xf2c65152ul));
188  Round(h, a, b, c, d, e, f, g, K(0xa88e5a6dul));
189  Round(g, h, a, b, c, d, e, f, K(0xb019fc65ul));
190  Round(f, g, h, a, b, c, d, e, K(0xb9d99ec7ul));
191  Round(e, f, g, h, a, b, c, d, K(0x9a1231c3ul));
192  Round(d, e, f, g, h, a, b, c, K(0xe70eeaa0ul));
193  Round(c, d, e, f, g, h, a, b, K(0xfdb1232bul));
194  Round(b, c, d, e, f, g, h, a, K(0xc7353eb0ul));
195  Round(a, b, c, d, e, f, g, h, K(0x3069bad5ul));
196  Round(h, a, b, c, d, e, f, g, K(0xcb976d5ful));
197  Round(g, h, a, b, c, d, e, f, K(0x5a0f118ful));
198  Round(f, g, h, a, b, c, d, e, K(0xdc1eeefdul));
199  Round(e, f, g, h, a, b, c, d, K(0x0a35b689ul));
200  Round(d, e, f, g, h, a, b, c, K(0xde0b7a04ul));
201  Round(c, d, e, f, g, h, a, b, K(0x58f4ca9dul));
202  Round(b, c, d, e, f, g, h, a, K(0xe15d5b16ul));
203  Round(a, b, c, d, e, f, g, h, K(0x007f3e86ul));
204  Round(h, a, b, c, d, e, f, g, K(0x37088980ul));
205  Round(g, h, a, b, c, d, e, f, K(0xa507ea32ul));
206  Round(f, g, h, a, b, c, d, e, K(0x6fab9537ul));
207  Round(e, f, g, h, a, b, c, d, K(0x17406110ul));
208  Round(d, e, f, g, h, a, b, c, K(0x0d8cd6f1ul));
209  Round(c, d, e, f, g, h, a, b, K(0xcdaa3b6dul));
210  Round(b, c, d, e, f, g, h, a, K(0xc0bbbe37ul));
211  Round(a, b, c, d, e, f, g, h, K(0x83613bdaul));
212  Round(h, a, b, c, d, e, f, g, K(0xdb48a363ul));
213  Round(g, h, a, b, c, d, e, f, K(0x0b02e931ul));
214  Round(f, g, h, a, b, c, d, e, K(0x6fd15ca7ul));
215  Round(e, f, g, h, a, b, c, d, K(0x521afacaul));
216  Round(d, e, f, g, h, a, b, c, K(0x31338431ul));
217  Round(c, d, e, f, g, h, a, b, K(0x6ed41a95ul));
218  Round(b, c, d, e, f, g, h, a, K(0x6d437890ul));
219  Round(a, b, c, d, e, f, g, h, K(0xc39c91f2ul));
220  Round(h, a, b, c, d, e, f, g, K(0x9eccabbdul));
221  Round(g, h, a, b, c, d, e, f, K(0xb5c9a0e6ul));
222  Round(f, g, h, a, b, c, d, e, K(0x532fb63cul));
223  Round(e, f, g, h, a, b, c, d, K(0xd2c741c6ul));
224  Round(d, e, f, g, h, a, b, c, K(0x07237ea3ul));
225  Round(c, d, e, f, g, h, a, b, K(0xa4954b68ul));
226  Round(b, c, d, e, f, g, h, a, K(0x4c191d76ul));
227 
228  w0 = Add(t0, a);
229  w1 = Add(t1, b);
230  w2 = Add(t2, c);
231  w3 = Add(t3, d);
232  w4 = Add(t4, e);
233  w5 = Add(t5, f);
234  w6 = Add(t6, g);
235  w7 = Add(t7, h);
236 
237  // Transform 3
238  a = K(0x6a09e667ul);
239  b = K(0xbb67ae85ul);
240  c = K(0x3c6ef372ul);
241  d = K(0xa54ff53aul);
242  e = K(0x510e527ful);
243  f = K(0x9b05688cul);
244  g = K(0x1f83d9abul);
245  h = K(0x5be0cd19ul);
246 
247  Round(a, b, c, d, e, f, g, h, Add(K(0x428a2f98ul), w0));
248  Round(h, a, b, c, d, e, f, g, Add(K(0x71374491ul), w1));
249  Round(g, h, a, b, c, d, e, f, Add(K(0xb5c0fbcful), w2));
250  Round(f, g, h, a, b, c, d, e, Add(K(0xe9b5dba5ul), w3));
251  Round(e, f, g, h, a, b, c, d, Add(K(0x3956c25bul), w4));
252  Round(d, e, f, g, h, a, b, c, Add(K(0x59f111f1ul), w5));
253  Round(c, d, e, f, g, h, a, b, Add(K(0x923f82a4ul), w6));
254  Round(b, c, d, e, f, g, h, a, Add(K(0xab1c5ed5ul), w7));
255  Round(a, b, c, d, e, f, g, h, K(0x5807aa98ul));
256  Round(h, a, b, c, d, e, f, g, K(0x12835b01ul));
257  Round(g, h, a, b, c, d, e, f, K(0x243185beul));
258  Round(f, g, h, a, b, c, d, e, K(0x550c7dc3ul));
259  Round(e, f, g, h, a, b, c, d, K(0x72be5d74ul));
260  Round(d, e, f, g, h, a, b, c, K(0x80deb1feul));
261  Round(c, d, e, f, g, h, a, b, K(0x9bdc06a7ul));
262  Round(b, c, d, e, f, g, h, a, K(0xc19bf274ul));
263  Round(a, b, c, d, e, f, g, h, Add(K(0xe49b69c1ul), Inc(w0, sigma0(w1))));
264  Round(h, a, b, c, d, e, f, g, Add(K(0xefbe4786ul), Inc(w1, K(0xa00000ul), sigma0(w2))));
265  Round(g, h, a, b, c, d, e, f, Add(K(0x0fc19dc6ul), Inc(w2, sigma1(w0), sigma0(w3))));
266  Round(f, g, h, a, b, c, d, e, Add(K(0x240ca1ccul), Inc(w3, sigma1(w1), sigma0(w4))));
267  Round(e, f, g, h, a, b, c, d, Add(K(0x2de92c6ful), Inc(w4, sigma1(w2), sigma0(w5))));
268  Round(d, e, f, g, h, a, b, c, Add(K(0x4a7484aaul), Inc(w5, sigma1(w3), sigma0(w6))));
269  Round(c, d, e, f, g, h, a, b, Add(K(0x5cb0a9dcul), Inc(w6, sigma1(w4), K(0x100ul), sigma0(w7))));
270  Round(b, c, d, e, f, g, h, a, Add(K(0x76f988daul), Inc(w7, sigma1(w5), w0, K(0x11002000ul))));
271  Round(a, b, c, d, e, f, g, h, Add(K(0x983e5152ul), w8 = Add(K(0x80000000ul), sigma1(w6), w1)));
272  Round(h, a, b, c, d, e, f, g, Add(K(0xa831c66dul), w9 = Add(sigma1(w7), w2)));
273  Round(g, h, a, b, c, d, e, f, Add(K(0xb00327c8ul), w10 = Add(sigma1(w8), w3)));
274  Round(f, g, h, a, b, c, d, e, Add(K(0xbf597fc7ul), w11 = Add(sigma1(w9), w4)));
275  Round(e, f, g, h, a, b, c, d, Add(K(0xc6e00bf3ul), w12 = Add(sigma1(w10), w5)));
276  Round(d, e, f, g, h, a, b, c, Add(K(0xd5a79147ul), w13 = Add(sigma1(w11), w6)));
277  Round(c, d, e, f, g, h, a, b, Add(K(0x06ca6351ul), w14 = Add(sigma1(w12), w7, K(0x400022ul))));
278  Round(b, c, d, e, f, g, h, a, Add(K(0x14292967ul), w15 = Add(K(0x100ul), sigma1(w13), w8, sigma0(w0))));
279  Round(a, b, c, d, e, f, g, h, Add(K(0x27b70a85ul), Inc(w0, sigma1(w14), w9, sigma0(w1))));
280  Round(h, a, b, c, d, e, f, g, Add(K(0x2e1b2138ul), Inc(w1, sigma1(w15), w10, sigma0(w2))));
281  Round(g, h, a, b, c, d, e, f, Add(K(0x4d2c6dfcul), Inc(w2, sigma1(w0), w11, sigma0(w3))));
282  Round(f, g, h, a, b, c, d, e, Add(K(0x53380d13ul), Inc(w3, sigma1(w1), w12, sigma0(w4))));
283  Round(e, f, g, h, a, b, c, d, Add(K(0x650a7354ul), Inc(w4, sigma1(w2), w13, sigma0(w5))));
284  Round(d, e, f, g, h, a, b, c, Add(K(0x766a0abbul), Inc(w5, sigma1(w3), w14, sigma0(w6))));
285  Round(c, d, e, f, g, h, a, b, Add(K(0x81c2c92eul), Inc(w6, sigma1(w4), w15, sigma0(w7))));
286  Round(b, c, d, e, f, g, h, a, Add(K(0x92722c85ul), Inc(w7, sigma1(w5), w0, sigma0(w8))));
287  Round(a, b, c, d, e, f, g, h, Add(K(0xa2bfe8a1ul), Inc(w8, sigma1(w6), w1, sigma0(w9))));
288  Round(h, a, b, c, d, e, f, g, Add(K(0xa81a664bul), Inc(w9, sigma1(w7), w2, sigma0(w10))));
289  Round(g, h, a, b, c, d, e, f, Add(K(0xc24b8b70ul), Inc(w10, sigma1(w8), w3, sigma0(w11))));
290  Round(f, g, h, a, b, c, d, e, Add(K(0xc76c51a3ul), Inc(w11, sigma1(w9), w4, sigma0(w12))));
291  Round(e, f, g, h, a, b, c, d, Add(K(0xd192e819ul), Inc(w12, sigma1(w10), w5, sigma0(w13))));
292  Round(d, e, f, g, h, a, b, c, Add(K(0xd6990624ul), Inc(w13, sigma1(w11), w6, sigma0(w14))));
293  Round(c, d, e, f, g, h, a, b, Add(K(0xf40e3585ul), Inc(w14, sigma1(w12), w7, sigma0(w15))));
294  Round(b, c, d, e, f, g, h, a, Add(K(0x106aa070ul), Inc(w15, sigma1(w13), w8, sigma0(w0))));
295  Round(a, b, c, d, e, f, g, h, Add(K(0x19a4c116ul), Inc(w0, sigma1(w14), w9, sigma0(w1))));
296  Round(h, a, b, c, d, e, f, g, Add(K(0x1e376c08ul), Inc(w1, sigma1(w15), w10, sigma0(w2))));
297  Round(g, h, a, b, c, d, e, f, Add(K(0x2748774cul), Inc(w2, sigma1(w0), w11, sigma0(w3))));
298  Round(f, g, h, a, b, c, d, e, Add(K(0x34b0bcb5ul), Inc(w3, sigma1(w1), w12, sigma0(w4))));
299  Round(e, f, g, h, a, b, c, d, Add(K(0x391c0cb3ul), Inc(w4, sigma1(w2), w13, sigma0(w5))));
300  Round(d, e, f, g, h, a, b, c, Add(K(0x4ed8aa4aul), Inc(w5, sigma1(w3), w14, sigma0(w6))));
301  Round(c, d, e, f, g, h, a, b, Add(K(0x5b9cca4ful), Inc(w6, sigma1(w4), w15, sigma0(w7))));
302  Round(b, c, d, e, f, g, h, a, Add(K(0x682e6ff3ul), Inc(w7, sigma1(w5), w0, sigma0(w8))));
303  Round(a, b, c, d, e, f, g, h, Add(K(0x748f82eeul), Inc(w8, sigma1(w6), w1, sigma0(w9))));
304  Round(h, a, b, c, d, e, f, g, Add(K(0x78a5636ful), Inc(w9, sigma1(w7), w2, sigma0(w10))));
305  Round(g, h, a, b, c, d, e, f, Add(K(0x84c87814ul), Inc(w10, sigma1(w8), w3, sigma0(w11))));
306  Round(f, g, h, a, b, c, d, e, Add(K(0x8cc70208ul), Inc(w11, sigma1(w9), w4, sigma0(w12))));
307  Round(e, f, g, h, a, b, c, d, Add(K(0x90befffaul), Inc(w12, sigma1(w10), w5, sigma0(w13))));
308  Round(d, e, f, g, h, a, b, c, Add(K(0xa4506cebul), Inc(w13, sigma1(w11), w6, sigma0(w14))));
309  Round(c, d, e, f, g, h, a, b, Add(K(0xbef9a3f7ul), w14, sigma1(w12), w7, sigma0(w15)));
310  Round(b, c, d, e, f, g, h, a, Add(K(0xc67178f2ul), w15, sigma1(w13), w8, sigma0(w0)));
311 
312  // Output
313  Write8(out, 0, Add(a, K(0x6a09e667ul)));
314  Write8(out, 4, Add(b, K(0xbb67ae85ul)));
315  Write8(out, 8, Add(c, K(0x3c6ef372ul)));
316  Write8(out, 12, Add(d, K(0xa54ff53aul)));
317  Write8(out, 16, Add(e, K(0x510e527ful)));
318  Write8(out, 20, Add(f, K(0x9b05688cul)));
319  Write8(out, 24, Add(g, K(0x1f83d9abul)));
320  Write8(out, 28, Add(h, K(0x5be0cd19ul)));
321 }
322 
323 }
324 
325 #endif
#define Round(a, b, c, d, e, f, g, h, k, w)
Definition: hash_impl.h:23
#define Maj(x, y, z)
Definition: hash_impl.h:17
static __attribute__((noinline)) std
static void WriteLE32(unsigned char *ptr, uint32_t x)
Definition: common.h:44
#define sigma1(x)
Definition: hash_impl.h:21
#define sigma0(x)
Definition: hash_impl.h:20
#define Sigma0(x)
Definition: hash_impl.h:18
void Transform_8way(unsigned char *out, const unsigned char *in)
static uint32_t ReadLE32(const unsigned char *ptr)
Definition: common.h:24
#define Sigma1(x)
Definition: hash_impl.h:19
#define Ch(x, y, z)
Definition: hash_impl.h:16
Released under the MIT license