Expand description
Top-level public API for the Foctet workspace.
This crate re-exports:
corefor framing, key schedule, handshake/rekey, and replay protection.archivefor encrypted single-file and split archive containers.transportfor optional split-stream adapters when thetransportfeature is enabled.
§Quick Start
use foctet::{archive, core};
let _wire = core::WIRE_VERSION_V0;
let _chunk_size = archive::DEFAULT_CHUNK_SIZE;For wire-format details, see SPEC.md in the workspace root.
Re-exports§
pub use foctet_archive as archive;pub use foctet_core as core;