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
//! Session lifecycle: handshake, state, re-keying, and seed management.

pub mod handshake;
pub mod rekey;
pub mod resumption;
pub mod state;

pub use handshake::{Handshake, HandshakeRole, SigningKey, VerifyingKey};
pub use rekey::ReKeyScheduler;
pub use resumption::{SessionTicket, TicketStore};
pub use state::Session;