feat(quote): add FMSPC extraction and related utils

- Introduced FMSPC extraction methods and associated utility functions.
- Updated `Quote` structure with parsing enhancements and FMSPC support.
- Added `quote_op` feature gating for SGX/TDX-specific functionality.
This commit is contained in:
Harald Hoyer 2025-05-05 14:27:18 +02:00
parent 2118466a8a
commit 6e65cf2f47
Signed by: harald
GPG key ID: F519A1143B3FBE32
14 changed files with 1585 additions and 46 deletions

View file

@ -38,6 +38,10 @@
//!
//! This is a safe wrapper for **sgx-dcap-quoteverify-sys**.
pub mod tdx_attest_rs {
pub use tdx_attest_rs::*;
}
use serde::{Deserialize, Serialize};
use std::{marker::PhantomData, ops::Deref, slice};