pub fn salt(topic_id: &TopicId, unix_minute: u64) -> [u8; 32]Expand description
Derive DHT salt for mutable record lookups.
Salt = SHA512(“salt” || topic_hash || unix_minute.to_le_bytes())[..32] Ensures records are stored in different DHT slots per minute.