(&self, machine: &Machine)
| 292 | |
| 293 | #[allow(dead_code)] |
| 294 | pub fn rtmr0(&self, machine: &Machine) -> Result<Vec<u8>> { |
| 295 | let (rtmr0_log, _) = self.rtmr0_log(machine)?; |
| 296 | Ok(measure_log(&rtmr0_log)) |
| 297 | } |
| 298 | |
| 299 | pub fn rtmr0_log(&self, machine: &Machine) -> Result<(RtmrLog, Tables)> { |
| 300 | let td_hob_hash = self.measure_td_hob(machine.memory_size)?; |
nothing calls this directly
no test coverage detected