enigma-storage 0.0.1

Encrypted local storage for Enigma with mandatory at-rest encryption and cross-platform key vault providers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod backends;
pub mod codec;
pub mod crypto;
pub mod error;
pub mod key_provider;
pub mod kdf;
pub mod platform;
pub mod storage;

pub use error::EnigmaStorageError;
pub use storage::EncryptedStore;

#[cfg(test)]
mod tests;