sal-vault 0.1.0

SAL Vault - Cryptographic functionality including key management, digital signatures, symmetric encryption, Ethereum wallets, and encrypted key-value store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Key-Value Store functionality
//!
//! This module provides a simple key-value store with encryption support.

pub mod error;
pub mod store;

// Re-export public types and functions
pub use error::KvsError;
pub use store::{
    create_store, delete_store, get_store_path, list_stores, open_store, KvPair, KvStore,
};

// Tests are now in the tests/ directory