From d8a82e88b1879ae9198a0d9a9208fef8276b8f35 Mon Sep 17 00:00:00 2001 From: Lily Sturmann Date: Tue, 26 Jul 2022 16:43:59 -0400 Subject: [PATCH] Fix small comment about implementing TPM ownership We should not imply that we will have this functionality. See https://github.com/keylime/rust-keylime/issues/429 Signed-off-by: Lily Sturmann --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7f8153e1..a0990250 100644 --- a/src/main.rs +++ b/src/main.rs @@ -450,7 +450,7 @@ async fn main() -> Result<()> { // When the EK handle is given, set auth for the Owner and // Endorsement hierarchies. Note in the Python implementation, // tpm_ownerpassword option is also used for claiming ownership of - // TPM access, which is not yet implemented here. + // TPM access, which will not be implemented here. if config.ek_handle.is_some() { if let Some(ref v) = config.tpm_ownerpassword { let auth = Auth::try_from(v.as_bytes())?;