Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use "currently" for swtpm emulator warning #632

Merged
merged 2 commits into from
Aug 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion keylime-agent/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
// 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 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.");

Check warning on line 234 in keylime-agent/src/main.rs

View check run for this annotation

Codecov / codecov/patch

keylime-agent/src/main.rs#L234

Added line #L234 was not covered by tests
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.");
}
Expand Down
Loading