(
attestation: &VersionedAttestation,
report_data: [u8; 64],
)
| 812 | } |
| 813 | |
| 814 | fn patch_report_data( |
| 815 | attestation: &VersionedAttestation, |
| 816 | report_data: [u8; 64], |
| 817 | ) -> AttestationV1 { |
| 818 | attestation.clone().into_v1().with_report_data(report_data) |
| 819 | } |
| 820 | |
| 821 | impl PlatformBackend for TestSimulatorPlatform { |
| 822 | fn attestation_for_info(&self) -> Result<VersionedAttestation> { |
no test coverage detected