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
12
13
14
15
16
17
18
//! DPI evasion and traffic masking.
//!
//! Implements:
//! - Protocol mimicry (HTTPS, gRPC, WebRTC)
//! - Jitter modeling for packet timing
//! - Randomized length padding
//! - Cover (background) traffic generation
//! - "Human-like" traffic profile emulation

pub mod cover;
pub mod jitter;
pub mod mimicry;
pub mod padding;

pub use cover::CoverTrafficGenerator;
pub use jitter::JitterModel;
pub use mimicry::ProtocolMimicry;
pub use padding::PaddingStrategy;