//! Strong hash implementations for chunk identity.
//!
//! This module provides cryptographic hashing functionality for computing
//! content hashes of chunks. Currently supports BLAKE3 via the `hash-blake3`
//! feature.
//!
//! - [`Blake3Hasher`] - BLAKE3 hash implementation (requires `hash-blake3` feature)
// Re-export for use within the crate (module is private, so pub is crate-local)
pub use Blake3Hasher;