mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
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>
14 lines
371 B
Rust
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;
|