Added SIMD code for WPA/WPA2

This commit is contained in:
Jens Steube
2016-05-14 19:45:51 +02:00
parent c78d7568e6
commit 9d74f2958d
7 changed files with 1469 additions and 193 deletions
+9
View File
@@ -137,6 +137,15 @@
#define SHA1_F2o(x,y,z) (SHA1_F2 ((x), (y), (z)))
#endif
#define SHA1_STEP_S(f,a,b,c,d,e,x) \
{ \
e += K; \
e += x; \
e += f (b, c, d); \
e += rotl32_S (a, 5u); \
b = rotl32_S (b, 30u); \
}
#define SHA1_STEP(f,a,b,c,d,e,x) \
{ \
e += K; \