mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Support retrievable secret for Add-Secret requests. Acked-by: Marc Hartmayer <marc@linux.ibm.com> Reviewed-by: Christoph Schlameuss <schlameuss@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
15 lines
392 B
Rust
15 lines
392 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 retr_secret;
|
|
pub mod user_data;
|