// SPDX-License-Identifier: MIT
//! TLS record and handshake decoders.
//!
//! The decoders here operate on borrowed byte slices and never require an
//! active network connection. Feed them recorded fixtures during tests, or
//! live reassembled TLS records at runtime.
//!
//! The public surface intentionally stays thin: [`parse_client_hello`] and
//! [`parse_server_hello`] cover the plaintext portions of a TLS 1.3
//! handshake, and [`parse_records`] chops a byte buffer into complete TLS
//! records for the tracker layer to feed to the handshake decoder.
pub use ;
pub use ;