1
0
mirror of https://github.com/fumiama/blake2b-simd.git synced 2026-06-07 19:40:25 +08:00
Commit Graph

2 Commits

Author SHA1 Message Date
frankw
f41b7a312a asm: Add new defines
- Add UNDIAGONALIZE define
- Add DIAGONALIZE define
- Add G1 define
- Add G2 define
- Add LOAD_SHUFFLE define

Additionally check for AVX support.
2016-06-28 09:28:38 -07:00
Harshavardhana
3a46db1cb4 Detect SSE automatically and enable corresponding optimized code path.
With this change, following happens.

```
if sse {
   compressSSE()
   return
}
compressGeneric()
```

compressGeneric is used as a fallback when SSE is not detected.
2016-06-28 02:51:14 -07:00