(quote: AttestationQuote)
| 78 | } |
| 79 | |
| 80 | fn platform_from_legacy_quote(quote: AttestationQuote) -> PlatformEvidence { |
| 81 | match quote { |
| 82 | AttestationQuote::DstackTdx(TdxQuote { quote, event_log }) => { |
| 83 | PlatformEvidence::Tdx { quote, event_log } |
| 84 | } |
| 85 | AttestationQuote::DstackGcpTdx => PlatformEvidence::GcpTdx, |
| 86 | AttestationQuote::DstackNitroEnclave => PlatformEvidence::NitroEnclave, |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | fn platform_into_legacy_quote(platform: PlatformEvidence) -> AttestationQuote { |
| 91 | match platform { |