aa-proxy 0.0.1-alpha.8

Sidecar traffic interception proxy for Agent Assembly
1
2
3
4
5
6
7
8
9
//! TLS subsystem: CA management and per-domain certificate caching.

pub mod ca;
pub mod cert;
#[cfg(target_os = "macos")]
mod keychain;

pub use ca::{CaStore, CertifiedKey};
pub use cert::CertCache;