forked from google/go-tpm-tools
-
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.
Add an SEV-SNP attestation if possible
When getting a vTPM quote within an SEV-SNP VM, attestation verifiers will also want to know if the SEV-SNP technology claim can be verified with a hardware-rooted attestation. We add "VerifyGceTechnology" for the GCENonHostInfo event that carries which memory encryption technology the guest is using. SEV and SEV-ES do not have attestation support in GCE, but SEV-SNP will. The addition of the go-sev-guest dependency increases the minimum Go version to 1.19. Signed-off-by: Dionna Glaze <[email protected]>
- Loading branch information
Showing
13 changed files
with
797 additions
and
242 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
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,19 +1,26 @@ | ||
module github.com/google/go-tpm-tools | ||
|
||
// Move to new-style build tags when minimum supported Go version is 1.17 | ||
go 1.17 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/google/go-attestation v0.4.4-0.20220404204839-8820d49b18d9 | ||
github.com/google/go-cmp v0.5.7 | ||
github.com/google/go-sev-guest v0.2.4 | ||
github.com/google/go-tpm v0.3.3 | ||
google.golang.org/protobuf v1.28.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/google/certificate-transparency-go v1.1.2 // indirect | ||
github.com/google/go-tspi v0.2.1-0.20190423175329-115dea689aad // indirect | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect | ||
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/pborman/uuid v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect | ||
golang.org/x/sys v0.0.0-20220608164250-635b8c9b7f68 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
) |
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 +1,2 @@ | ||
github.com/googleapis/gax-go v2.0.2+incompatible h1:silFMLAnr330+NRuag/VjIGF7TLp/LBrV2CJKFLWEww= | ||
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= |
Oops, something went wrong.