-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Crypto Keys as described by section 3.1.4.1.6 of draft-ietf-rats-corim-02: https://www.ietf.org/archive/id/draft-ietf-rats-corim-02.html#name-crypto-keys The replaces the equivalent VerifKey construct in the existing implementation. Crypo Keys are one of pre-defined types, allowing for stronger validation of the underlying value. As part of this change, the dependency on swid library is updated to the most current version, which changes the representation of digests to use ";" instead of ":" as the separator. Signed-off-by: Sergei Trofimov <[email protected]>
- Loading branch information
Showing
21 changed files
with
1,410 additions
and
1,153 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.17.2" | ||
go-version: "1.18" | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Install golangci-lint | ||
|
@@ -19,7 +19,7 @@ jobs: | |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.46.2 | ||
- name: Install mockgen | ||
run: | | ||
go install github.com/golang/mock/[email protected] | ||
go install github.com/golang/mock/[email protected] | ||
- name: Run required linters in .golangci.yml plus hard-coded ones here | ||
run: make lint | ||
- name: Run optional linters (not required to pass) | ||
|
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
Oops, something went wrong.