revault-api 0.1.0

Complete Rust API for reVault lockboxes and vaults
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Complete native Rust API. The public names remain `vault` and `lockbox`;
//! transport framing is only used at foreign-language boundaries.

pub mod lockbox {
    pub use revault_lockbox_api::*;
}

pub mod vault {
    pub use revault_vault_api::*;
}

pub use revault_lockbox_api::{
    ContactKeyPair, ContactPublicKey, Lockbox, OwnerSigningKeyPair, OwnerSigningPublicKey,
};
pub use revault_vault_api::VaultDirectory;