Maximum Stealth.
Zero Compromise.
A next-generation VPN architecture built entirely in Rust. Operates over a single WebSocket connection multiplexed through port 443, masking behind a legitimate website with Double Ratchet encryption.
pub struct DoubleRatchet { // DH Ratchet for Self-Healing dh_pair: Option<X25519KeyPair>, remote_dh_key: Option<X25519PublicKey>, // Symmetric Ratchet for Forward Secrecy root_key: [u8; 32], sending_chain_key: Option<[u8; 32]>, receiving_chain_key: Option<[u8; 32]>, // Out-of-Order Message Handling skipped_keys: LruCache<(PublicKey, u32), MessageKey>, }