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