@@ -82,19 +82,19 @@ async def main():
8282 # Get collateral from Intel PCS (async)
8383 quote_data = open (" quote.bin" , " rb" ).read()
8484 collateral = await dcap_qvl.get_collateral_from_pcs(quote_data)
85-
85+
8686 # Or get collateral for specific FMSPC (async)
8787 collateral = await dcap_qvl.get_collateral_for_fmspc(
8888 pccs_url = " https://api.trustedservices.intel.com" ,
8989 fmspc = " B0C06F000000" ,
9090 ca = " processor" ,
9191 is_sgx = True
9292 )
93-
93+
9494 # Verify quote with collateral
9595 result = dcap_qvl.verify(quote_data, collateral, timestamp)
9696 print (f " Status: { result.status} " )
97-
97+
9898 # Or get collateral and verify in one step (async)
9999 result = await dcap_qvl.get_collateral_and_verify(quote_data)
100100 print (f " Advisory IDs: { result.advisory_ids} " )
@@ -121,7 +121,7 @@ The Python bindings are built using:
1211211 . Add Rust implementation in ` ../src/python.rs `
1221222 . Update Python package in ` python/dcap_qvl/__init__.py `
1231233 . Add tests in ` tests/ ` directory (use appropriate test file)
124- 5 . Update documentation in ` docs/ `
124+ 4 . Update documentation in ` docs/ `
125125
126126### Testing
127127
@@ -142,4 +142,4 @@ The project includes comprehensive testing:
142142
143143## License
144144
145- MIT License - see [ ../LICENSE] ( ../LICENSE ) for details.
145+ MIT License - see [ ../LICENSE] ( ../LICENSE ) for details.
0 commit comments