Skip to content

Commit

Permalink
Remove ASK/ARK warnings
Browse files Browse the repository at this point in the history
The ASK and ARK ought to be embedded in the Verifier and are not
necessary for the host to forward. AWS EC2 does not provide the ASVK or
ARK, so drop the nuisance warnings.
  • Loading branch information
deeglaze committed Oct 10, 2024
1 parent de2ac90 commit 6928d6d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions abi/abi.go
Original file line number Diff line number Diff line change
Expand Up @@ -875,13 +875,6 @@ func (c *CertTable) Proto() *pb.CertificateChain {
if len(result.VcekCert) == 0 && len(result.VlekCert) == 0 {
logger.Warning("Warning: Neither VCEK nor VLEK certificate found in data pages")
}

if len(result.AskCert) == 0 {
logger.Warningf("ASK certificate not found in data pages")
}
if len(result.ArkCert) == 0 {
logger.Warningf("ARK certificate not found in data pages")
}
return result
}

Expand Down

0 comments on commit 6928d6d

Please sign in to comment.