Decode the VM config from the external or embedded config.
(&'a self, config: &'a str)
| 505 | impl AttestationV1 { |
| 506 | /// Decode the VM config from the external or embedded config. |
| 507 | pub fn decode_vm_config<'a>(&'a self, config: &'a str) -> Result<VmConfig> { |
| 508 | decode_vm_config_with_fallback(config, self.stack.config()) |
| 509 | } |
| 510 | |
| 511 | /// Decode the app info from the event log. |
| 512 | pub fn decode_app_info(&self, boottime_mr: bool) -> Result<AppInfo> { |
no test coverage detected