Expand description
Hash function abstraction & digest types.
Modules§
- siphash
- A default
Hasher
implementation backed bySipHasher24
.
Structs§
- Digest
- A variable bit length digest, output from a
Hasher
implementation. - Page
Digest - Type wrapper over a
Digest
of aPage
, representing the hash of the nodes & subtree rooted at thePage
. - Root
Hash - The root hash of a
MerkleSearchTree
, representative of the state of the tree. - Value
Digest - Type wrapper over a
Digest
of a tree value, for readability / clarity / compile-time safety.
Traits§
- Hasher
- A hash function outputting a fixed-length digest of
N
bytes.