uselesskey_core_hash/lib.rs
1//! Deprecated compatibility shim for deterministic hashing helpers.
2//!
3//! Prefer `uselesskey-core`; hashing mechanics are now owned by
4//! `uselesskey_core::srp::hash`.
5
6#![forbid(unsafe_code)]
7#![cfg_attr(not(feature = "std"), no_std)]
8
9pub use uselesskey_core::srp::hash::{Hash, Hasher, hash32, write_len_prefixed};