forked from github/smimesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AS-92: fix issues that prevent turbostream from working
This commit ports over two fixes that seemingly have lost all upstream traction: 1. Add support for RSA-PSS signature verification 2. Add an `unsafe.Pointer` cast to allow compilation on Go > 1.17 These code changes are both mostly ported, there is little "original" code. https://github.com/github/certstore/pull/20/files#diff-e46a14c55fd3c2c2f7ade1a63b9f14f591829e183d307f7d2ee54cb7cc4c4073R395 github#114
- Loading branch information
Showing
2 changed files
with
86 additions
and
17 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
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,13 +1,17 @@ | ||
module github.com/github/smimesign | ||
|
||
go 1.12 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/certifi/gocertifi v0.0.0-20180118203423-deb3ae2ef261 | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pborman/getopt v0.0.0-20180811024354-2b5b3bfb099b | ||
github.com/pkg/errors v0.8.1 | ||
github.com/stretchr/testify v1.3.0 | ||
golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734 | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
) |