mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Add EBC (Early Boot Customization) utility functions to pv_core library for parsing and verifying Add-Secret-Request structures. Introduce the core library functionality needed for EBC: - Add ebc_utils module to pv_core with ASR parsing and verification - Export ebc_utils in pv_core lib.rs - Re-export ebc_utils in pv lib.rs for downstream consumers - Update pvsecret Cargo.toml dependencies The library provides the foundation for tools that work with integrity-protected ASR structures used in SEL guest customization. Assisted-by: IBM Bob:1.0.1 Acked-by: Holger Dengler <dengler@linux.ibm.com> Reviewed-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Finn Callies <fcallies@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
31 lines
851 B
TOML
31 lines
851 B
TOML
[package]
|
|
name = "s390_pv_core"
|
|
version = "0.12.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
description = "s390-tools IBM Secure Execution core utilities"
|
|
keywords = ["s390", "s390x", "IBM_Secure_Execution"]
|
|
repository = "https://github.com/ibm-s390-linux/s390-tools/tree/master/rust"
|
|
categories = ["hardware-support"]
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
libc = "0.2.169"
|
|
log = { version = "0.4.25", features = ["std", "release_max_level_debug"] }
|
|
thiserror = "2.0.11"
|
|
zerocopy = {version = "0.8", features = ["derive"]}
|
|
serde = { version = "1.0.217", features = ["derive"]}
|
|
byteorder = "1.5"
|
|
regex = "1.10"
|
|
sha2 = "0.10.9"
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0.177"
|
|
lazy_static = "1.5"
|