1
0
mirror of https://github.com/fumiama/blake2b-simd.git synced 2026-06-06 18:50:28 +08:00

3 Commits

Author SHA1 Message Date
源文雨
c99573b3b2 adapt go1.17 2022-04-12 17:23:18 +08:00
Harshavardhana
c50cace0dc internal: use arrays instead of make for simple values. (#22)
Fixes #16
2016-07-22 02:38:12 -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