rust/utils: Replace get_verified_hkds with get_verified_hkds_new

Now as no users of get_verified_hkds exists, replace it with
get_verified_hkds_new.

Signed-off-by: Marc Hartmayer <marc@linux.ibm.com>
Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2026-07-23 17:55:38 +02:00
committed by Steffen Eiden
parent 9a5c9cd7f9
commit 175b336d32
5 changed files with 6 additions and 44 deletions
+1 -1
View File
@@ -313,7 +313,7 @@ fn determine_version(cli_version: HdrVersionSelection, host_keys: &[HostKey]) ->
pub fn create(opt: &CreateBootImageArgs) -> Result<OwnExitCode> {
// Verify host key documents first, because if they are not valid there is
// no reason to continue.
let verified_host_keys = opt.certificate_args.get_verified_hkds_new(
let verified_host_keys = opt.certificate_args.get_verified_hkds(
"Secure Execution image",
HdrVersionSelection::Explicit(opt.hdr_version).map(|v| v.into()),
)?;