flare-core 0.1.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.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 证书模块
//! 
//! 提供证书的解析和转换功能,支持从文件或字符串加载证书
//! 支持 DER 和 PEM 格式,可用于 QUIC 和 WebSocket (TLS)

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

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