rskit-util 0.2.0-alpha.1

Pure utility functions for rskit
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Content and interop hashing helpers.
//!
//! - BLAKE3 content hashing ([`ContentHasher`], [`hash_hex`]) for stable cache
//!   keys, change detection, and deduplication.
//! - SHA-256 digests ([`sha256`]) for wire-format and interop use cases.

mod content;
pub use content::{ContentHasher, hash_hex};

/// SHA-256 digests for wire-format and interop use cases.
pub mod sha256;