1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//AUTHOR: "AtomicGamer9523"@github.com
//LICENSE: "MIT"
//FORMAT: "RUST"
//! A light-weight Blockchain library using [BLAKE3][1] for hashing.
//!
//! # Usage:
//!
//! ```rust
//! use hyperhasher::{
//! HashString,
//! Block,
//! Chain,
//! IBD
//! };
//!
//! fn main(){
//! //Craeting A New Chain
//! let mut chain = Chain::new(IBD);
//! let block = Block::new("test", &chain);
//! chain.push(block);
//! println!("{}", chain.hash);
//! }
//! ```
//!
//! Also see [RustCrypto/hashes](https://github.com/RustCrypto/hashes) readme.
//!
//! [1]: https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE3
pub use ;
pub use blake3;