Files
s390-tools/rust/pvverify/Cargo.toml
Steffen Eiden 0ff130ed84 Add tool to verify host-key documents
Add a tool that can be used to verify if a given IBM host-key document is
valid. This uses the same logic (and code) as the image/request tools
for IBM Secure Execution, pvimg, pvattest, and pvsecret.

This tool basically just does the first step of the above tools; but without
creating any request or image.

Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
2025-12-10 14:43:15 +01:00

24 lines
570 B
TOML

[package]
name = "pvverify"
version = "0.12.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[dependencies]
anyhow = { version = "1.0.95", features = ["std"] }
clap = { version ="4.5", features = ["derive", "wrap_help"]}
log = { version = "0.4.25", features = ["std", "release_max_level_debug"] }
pv = { path = "../pv" , package = "s390_pv" }
utils = { path = "../utils"}
[lints]
workspace = true
[build-dependencies]
clap = { version ="4.5", features = ["derive", "wrap_help"]}
clap_complete = "4.5"
utils = { path = "../utils" }