eck 0.0.4

A fast, simple file & folder encryption manager, written in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Unit Tests - Core functionality verification
//!
//! Tests individual components in isolation without external dependencies

pub mod compression;
pub mod encryption_primitives;
pub mod error_display;
pub mod file;
pub mod folder_entries;
pub mod metadatas;
pub mod parallelism;
pub mod text;
pub mod types;