fluxencrypt 0.3.7

A high-performance, secure encryption SDK for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core encryption and decryption functionality.
//!
//! This module provides the main encryption interfaces for FluxEncrypt, including
//! hybrid encryption that combines RSA-OAEP for key encryption with AES-GCM for
//! data encryption.

pub mod aes_gcm;
pub mod hybrid;
pub mod rsa_oaep;

// Re-export main types
pub use hybrid::HybridCipher;