//! hemera-based noun hashing with capacity domain separation
//!
//! atoms: hemera::tree::hash_leaf (FLAG_CHUNK in capacity)
//! cells: hemera::tree::hash_node (FLAG_PARENT in capacity)
//! digest: first 4 of 8 Goldilocks elements (128-bit collision security)
use Goldilocks;
use Tag;
/// hash identity โ 4 Goldilocks elements = 32 bytes
/// intentional truncation from hemera 64-byte output (per trace.md)
pub type Digest = ;
/// hash an atom using hemera tree leaf mode
/// hash a cell using hemera tree node mode
nox/rs/noun/hash.rs
ฯ 0.0%