stochastic-routing-extended 1.0.2

SRX (Stochastic Routing eXtended) — a next-generation VPN protocol with stochastic routing, DPI evasion, post-quantum cryptography, and multi-transport channel splitting
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! In-band signaling and decoy protocol mechanisms.
//!
//! - Hidden control messages embedded in cover traffic
//! - Distributed handshake via intermediary nodes / CDN edge
//! - Decoy REST/gRPC endpoints for control data exchange

pub mod decoy;
pub mod inband;

pub use decoy::{DecoyEndpoint, DecoyProfile, DecoyRouter};
pub use inband::InBandSignaling;