rustdcr 0.1.0

Decred daemon infrastructure in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Package chainhash provides abstracted hash functionality.
//!
//! This package provides a generic hash type and associated functions that
//! allows the specific hash algorithm to be abstracted.

pub mod constants;
mod error;
mod hash;
mod test;

pub use error::ChainHashError;
pub use hash::Hash;