mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-02 01:46:53 -04:00
attetstation: enable Azure TDX CRL checking (#3160)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
c682558940
commit
8b76dd68ca
1 changed files with 4 additions and 5 deletions
|
@ -93,11 +93,10 @@ func (v *Validator) validateQuote(tdxQuote *tdx.QuoteV4) error {
|
||||||
roots.AddCert((*x509.Certificate)(&v.cfg.IntelRootKey))
|
roots.AddCert((*x509.Certificate)(&v.cfg.IntelRootKey))
|
||||||
|
|
||||||
if err := verify.TdxQuote(tdxQuote, &verify.Options{
|
if err := verify.TdxQuote(tdxQuote, &verify.Options{
|
||||||
// TODO: Re-enable CRL checking once issues on Azure's side are resolved.
|
CheckRevocations: true,
|
||||||
// CheckRevocations: true,
|
GetCollateral: true,
|
||||||
// GetCollateral: true,
|
TrustedRoots: roots,
|
||||||
TrustedRoots: roots,
|
Getter: v.getter,
|
||||||
Getter: v.getter,
|
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue