wireforge-app 1.1.0

Application-layer protocol parsers/builders and pcap file I/O
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! TLS (Transport Layer Security) protocol parsing — ClientHello and SNI extraction.
//!
//! Supports TLS 1.0 through TLS 1.3. Three-layer parsing: Record → Handshake → ClientHello.

mod record;
mod handshake;
mod client_hello;
mod extensions;

pub use record::TlsRecord;
pub use handshake::TlsHandshake;
pub use client_hello::TlsClientHello;
pub use extensions::{TlsExtension, TlsExtensionsIter};