cosmian_kms_cli 5.20.0

Command Line Interface used to manage the KMS server If any assistance is needed, please either visit the Cosmian technical documentation at https://docs.cosmian.com or contact the Cosmian support team on Discord https://discord.com/invite/7kPMNtHpnz
Documentation
pub(crate) mod export_key;
mod get_key_uid;
pub(crate) mod import_key;
mod locate;
pub(crate) mod sign;
pub(crate) mod signature_verify;
pub mod utils;

mod wrap_key;

mod unwrap_key;

pub use export_key::ExportSecretDataOrKeyAction;
pub(crate) use get_key_uid::get_key_uid;
pub use import_key::ImportSecretDataOrKeyAction;
pub use locate::LocateObjectsAction;
pub use unwrap_key::UnwrapSecretDataOrKeyAction;
pub use wrap_key::WrapSecretDataOrKeyAction;

/// The size of a symmetric wrapping key in bytes derived from a password
pub const SYMMETRIC_WRAPPING_KEY_SIZE: usize = 32;