Trait sp_runtime::traits::Hash [−][src]
Abstraction around hashing
Associated Types
type Output: Member + MaybeSerializeDeserialize + Debug + Hash + AsRef<[u8]> + AsMut<[u8]> + Copy + Default + Encode + Decode
[src]
The hash type produced.
Required methods
fn ordered_trie_root(input: Vec<Vec<u8>>) -> Self::Output
[src]
The ordered Patricia tree root of the given input
.
fn trie_root(input: Vec<(Vec<u8>, Vec<u8>)>) -> Self::Output
[src]
The Patricia tree root of the given mapping.
Provided methods
fn hash(s: &[u8]) -> Self::Output
[src]
Produce the hash of some byte-slice.
fn hash_of<S: Encode>(s: &S) -> Self::Output
[src]
Produce the hash of some codec-encodable value.