(&self)
| 687 | } |
| 688 | |
| 689 | pub fn tdx_quote(&self) -> Option<&TdxQuote> { |
| 690 | match &self.quote { |
| 691 | AttestationQuote::DstackTdx(quote) => Some(quote), |
| 692 | AttestationQuote::DstackGcpTdx => None, |
| 693 | AttestationQuote::DstackNitroEnclave => None, |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | /// Get TDX quote bytes |
| 698 | pub fn get_tdx_quote_bytes(&self) -> Option<Vec<u8>> { |
no outgoing calls
no test coverage detected