decanter 0.1.6

This crate implements basic cryptographic primitives native to the ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
    Appellation: hashes <module>
    Contributors: FL03 <jo3mccain@icloud.com>
*/
pub use self::{h160::*, h256::*};

mod h160;
mod h256;

/// The H160Hash type is a 20-byte hash.
pub type H160Hash = [u8; 20];
/// The H256Hash type is a 32-byte hash.
pub type H256Hash = [u8; 32];

pub(crate) mod utils {}