gloves 0.5.11

seamless secret manager and handoff
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Vault orchestration for encrypted volumes.

/// Vault configuration schema.
pub mod config;
/// gocryptfs command wrapper.
pub mod gocryptfs;
/// Vault session schema.
pub mod session;

mod manager;
mod reaper;
mod types;
mod validation;

pub use manager::VaultManager;
pub(crate) use reaper::reap_expired_sessions;
pub use types::{VaultListEntry, VaultSecretProvider, VaultStatusEntry};