distributed-topic-tracker 0.3.0

automagically find peers interested in a topic + iroh-gossip integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cryptographic primitives for DHT record signing and encryption.
//!
//! This module handles Ed25519 signing keys, HPKE encryption, and secret rotation
//! for securing DHT records used in peer discovery.

mod keys;
mod record;

pub use keys::{
    DefaultSecretRotation, RotationHandle, SecretRotation, encryption_keypair, salt,
    signing_keypair,
};
pub use record::{EncryptedRecord, Record, RecordPublisher, TopicId};