From 4c0ada580498d613ac44c3f40205ad2fc101c268 Mon Sep 17 00:00:00 2001 From: Sergio Arroutbi Date: Fri, 4 Aug 2023 12:07:03 +0200 Subject: [PATCH] Update keylime-agent/src/main.rs Co-authored-by: Anderson Sasaki <33833274+ansasaki@users.noreply.github.com> --- keylime-agent/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keylime-agent/src/main.rs b/keylime-agent/src/main.rs index 25ecb7e81..27a5fe5ae 100644 --- a/keylime-agent/src/main.rs +++ b/keylime-agent/src/main.rs @@ -231,7 +231,7 @@ async fn main() -> Result<()> { // Retrieve the TPM Vendor, this allows us to warn if someone is using a // Software TPM ("SW") if tss_esapi::utils::get_tpm_vendor(ctx.as_mut())?.contains("SW") { - warn!("INSECURE: Keylime is using currently a software TPM emulator rather than a real hardware TPM."); + warn!("INSECURE: Keylime is currently using a software TPM emulator rather than a real hardware TPM."); warn!("INSECURE: The security of Keylime is NOT linked to a hardware root of trust."); warn!("INSECURE: Only use Keylime in this mode for testing or debugging purposes."); }