fluxencrypt 0.1.1

A high-performance, secure encryption SDK for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Streaming encryption and decryption functionality.
//!
//! This module provides efficient streaming encryption capabilities for
//! processing large files and data streams without loading everything
//! into memory at once.

pub mod batch;
pub mod cipher;

// Re-export main types
pub use batch::BatchProcessor;
pub use cipher::{FileStreamCipher, ProgressCallback, StreamCipher};