sal/vault/src/symmetric/mod.rs
Mahmoud-Emad e125bb6511
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
Rhai Tests / Run Rhai Tests (pull_request) Waiting to run
feat: Migrate SAL to Cargo workspace
- Migrate individual modules to independent crates
- Refactor dependencies for improved modularity
- Update build system and testing infrastructure
- Update documentation to reflect new structure
2025-06-24 12:39:18 +03:00

14 lines
506 B
Rust

//! Symmetric encryption functionality
//!
//! This module provides functionality for symmetric encryption using ChaCha20Poly1305.
pub mod implementation;
// Re-export public types and functions
pub use implementation::{
decrypt_key_space, decrypt_symmetric, decrypt_with_key, derive_key_from_password,
deserialize_encrypted_space, encrypt_key_space, encrypt_symmetric, encrypt_with_key,
generate_symmetric_key, serialize_encrypted_space, EncryptedKeySpace,
EncryptedKeySpaceMetadata,
};