2026-05-21 19:48:02 +00:00
|
|
|
//! `swactor-transport` — Ed25519 identity + encoding helpers for swactor peers.
|
2026-02-24 09:12:28 +00:00
|
|
|
//!
|
2026-05-21 19:48:02 +00:00
|
|
|
//! This crate is the wire-format anchor for distribution / datastore /
|
|
|
|
|
//! node. The keypair is a thin wrapper over `ed25519-dalek::SigningKey`.
|
|
|
|
|
//! The on-disk identity file is JSON of the form
|
|
|
|
|
//! `{"secret_key_hex": "<64 hex chars>"}` — 32 bytes of secret seed.
|
2026-02-24 09:12:28 +00:00
|
|
|
|
|
|
|
|
pub mod crypto;
|
|
|
|
|
pub mod identity;
|