| 312 | /// Represents a TDX quote |
| 313 | #[derive(Clone, Encode, Decode)] |
| 314 | pub struct TdxQuote { |
| 315 | /// The quote gererated by Intel QE |
| 316 | pub quote: Vec<u8>, |
| 317 | /// The event log |
| 318 | pub event_log: Vec<TdxEvent>, |
| 319 | } |
| 320 | |
| 321 | /// Represents an NSM (Nitro Security Module) attestation document |
| 322 | #[derive(Clone, Encode, Decode)] |
no outgoing calls