- Renamed examples directory to `_archive` to reflect legacy status. - Updated README.md to reflect current status of vault module, including migration from Sameh's implementation to Lee's. - Temporarily disabled Rhai scripting integration for the vault. - Added notes regarding current and future development steps.
24 lines
651 B
Rust
24 lines
651 B
Rust
//! SAL Vault: Cryptographic functionality for SAL
|
|
//!
|
|
//! This package provides cryptographic operations including:
|
|
//! - Key space management (creation, loading, encryption, decryption)
|
|
//! - Key pair management (ECDSA)
|
|
//! - Digital signatures (signing and verification)
|
|
//! - Symmetric encryption (ChaCha20Poly1305)
|
|
//! - Ethereum wallet functionality
|
|
//! - Key-value store with encryption
|
|
|
|
pub mod error;
|
|
pub mod ethereum;
|
|
pub mod keyspace;
|
|
pub mod kvs;
|
|
pub mod symmetric;
|
|
|
|
// Rhai integration module
|
|
pub mod rhai;
|
|
|
|
// Re-export modules
|
|
// Re-export common types for convenience
|
|
pub use error::CryptoError;
|
|
pub use keyspace::{KeyPair, KeySpace};
|