Skip to main content

elara_wire/
lib.rs

1//! ELARA Wire Protocol - Binary packet format
2//!
3//! This crate implements the wire format for ELARA packets:
4//! - Fixed header (30 bytes)
5//! - Variable header extensions (TLV)
6//! - Encrypted payload
7//! - Auth tag (AEAD)
8
9pub mod extensions;
10pub mod flags;
11pub mod frame;
12pub mod header;
13
14pub use extensions::*;
15pub use flags::*;
16pub use frame::*;
17pub use header::*;