Skip to main content

flare_core/common/encryption/
mod.rs

1//! 加密模块
2//!
3//! 提供可扩展的加密接口,支持用户自定义加密算法实现
4
5pub mod algorithms;
6pub mod registry;
7pub mod traits;
8
9pub use algorithms::{Aes256GcmEncryptor, EncryptionAlgorithm, NoEncryptor};
10pub use registry::{EncryptionRegistry, EncryptionUtil};
11pub use traits::Encryptor;