flare-core 1.0.3

A high-performance, reliable long-connection communication toolkit for Rust, supporting WebSocket and QUIC protocols with features like authentication, device management, serialization negotiation, and protocol racing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 加密模块
//!
//! 提供可扩展的加密接口,支持用户自定义加密算法实现

pub mod algorithms;
pub mod registry;
pub mod traits;

pub use algorithms::{Aes256GcmEncryptor, EncryptionAlgorithm, NoEncryptor};
pub use registry::{EncryptionRegistry, EncryptionUtil};
pub use traits::Encryptor;