Files
s390-tools/rust/pv/src/uvsecret.rs
Steffen Eiden 34bef977e8 rust/pv: User-data signing and verifying
Add the ability to generate signed user-data and to verify the
signature.

Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2024-02-02 16:11:22 +01:00

14 lines
371 B
Rust

// SPDX-License-Identifier: MIT
//
// Copyright IBM Corp. 2023
//! Provides functionality to manage the UV secret store.
//!
//! Provides functionality to build `add-secret` requests.
//! Also provides interfaces, to dispatch `Add Secret`, `Lock Secret Store`,
//! and `List Secrets` requests,
pub mod asrcb;
pub mod ext_secret;
pub mod guest_secret;
pub mod user_data;