uhash-types 0.5.1

Shared proof/challenge/difficulty types for UniversalHash stacks
Documentation
1
2
3
4
5
6
7
8
9
#![cfg_attr(not(feature = "std"), no_std)]

mod challenge;
mod difficulty;
mod proof;

pub use challenge::Challenge;
pub use difficulty::Difficulty;
pub use proof::Proof;