saorsa-core 0.20.0

Saorsa - Core P2P networking library with DHT, QUIC transport, and post-quantum cryptography
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Distributed Hash Table implementations
//!
//! This module provides the DHT as a **peer phonebook**: routing table,
//! peer discovery, liveness, and trust-weighted selection. Data storage
//! and replication are handled by the application layer (saorsa-node).

pub mod core_engine;
pub mod network_integration;

// Re-export core engine types
pub use core_engine::{AdmissionResult, DhtCoreEngine, DhtKey, RoutingTableEvent};

/// DHT key type (256-bit)
pub type Key = [u8; 32];

#[cfg(test)]
mod security_tests;