rskit_util/hash/mod.rs
1//! Content and interop hashing helpers.
2//!
3//! - BLAKE3 content hashing ([`ContentHasher`], [`hash_hex`]) for stable cache keys, change detection,
4//! and deduplication.
5//! - SHA-256 digests ([`sha256`]) for wire-format and interop use cases.
6
7mod content;
8pub use content::{ContentHasher, hash_hex};
9
10/// SHA-256 digests for wire-format and interop use cases.
11pub mod sha256;