flare-core 1.0.2

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
12
13
14
//! 证书模块
//!
//! 提供证书的解析和转换功能,支持从文件或字符串加载证书
//! 支持 DER 和 PEM 格式,可用于 QUIC 和 WebSocket (TLS)

pub mod converter;
pub mod loader;
pub mod pinning;
pub mod server;

pub use converter::*;
pub use loader::*;
pub use pinning::*;
pub use server::*;