internet 0.1.0

Network library for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # TLS 1.3: Transport Layer Security Protocol Version 1.3
//!
//! Simplified TLS 1.2 handshake with forward secrecy and removed legacy features.
//!
//! ## Status
//!
//! **Draft** — Initial implementation. Unreviewed, untested, unstable API.
//! Breaking changes expected in next release.
//!
//! Specification: [RFC 9846](https://datatracker.ietf.org/doc/html/rfc9846)

mod encoding;
pub use encoding::*;

mod mapping;
#[allow(unused_imports)]
pub use mapping::*;