Skip to content

Commit 992a639

Browse files
committed
Use production quote verifier
1 parent 17e64b4 commit 992a639

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/attestation/dcap.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ pub async fn verify_dcap_attestation(
4040
)
4141
.await?;
4242

43-
let _verified_report = dcap_qvl::verify::verify(&input, &collateral, now)?;
43+
let quote_verifier = dcap_qvl::verify::QuoteVerifier::new_prod();
44+
let _verified_report = quote_verifier.verify(&input, &collateral, now)?;
4445

4546
let measurements = MultiMeasurements::from_dcap_qvl_quote(&quote)?;
4647

0 commit comments

Comments
 (0)