(&self, report_data: [u8; 64], vm_config: &str)
| 78 | } |
| 79 | |
| 80 | fn quote_response(&self, report_data: [u8; 64], vm_config: &str) -> Result<GetQuoteResponse> { |
| 81 | simulator::simulated_quote_response( |
| 82 | &self.attestation, |
| 83 | report_data, |
| 84 | vm_config, |
| 85 | self.patch_report_data, |
| 86 | ) |
| 87 | } |
| 88 | |
| 89 | fn attest_response(&self, report_data: [u8; 64]) -> Result<AttestResponse> { |
| 90 | simulator::simulated_attest_response(&self.attestation, report_data, self.patch_report_data) |
nothing calls this directly
no test coverage detected