-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from bwesterb/shakex4
Speed up SHAKE with AVX2 if available.
- Loading branch information
Showing
19 changed files
with
1,890 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,5 @@ os: | |
|
||
go: | ||
- "1.x" | ||
- "1.11.x" | ||
- "1.13.x" | ||
- master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
module github.com/bwesterb/go-xmssmt | ||
|
||
require ( | ||
github.com/alvaroloes/enumer v1.1.2 // indirect | ||
github.com/bwesterb/byteswriter v1.0.0 | ||
github.com/cespare/xxhash v1.1.0 | ||
github.com/edsrzf/mmap-go v1.0.0 | ||
github.com/hashicorp/go-multierror v1.0.0 | ||
github.com/nightlyone/lockfile v0.0.0-20180618180623-0ad87eef1443 | ||
github.com/hashicorp/go-multierror v1.1.0 | ||
github.com/nightlyone/lockfile v1.0.0 | ||
github.com/templexxx/cpufeat v0.0.0-20180724012125-cef66df7f161 // indirect | ||
github.com/templexxx/xor v0.0.0-20191217153810-f85b25db303b | ||
golang.org/x/crypto v0.0.0-20191219195013-becbf705a915 | ||
golang.org/x/sys v0.0.0-20191224085550-c709ea063b76 // indirect | ||
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 | ||
golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9 | ||
) | ||
|
||
go 1.13 | ||
go 1.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.