dragoonfri 0.1.0

Fast Reed-solomon Interactive oracle proof of proximity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module contains implementations of trait [`rs_merkle::Hasher`] for other algorithms
//! than [`Sha2-256`](`rs_merkle::algorithms::Sha256`) and [`Sha2-384`](`rs_merkle::algorithms::Sha384`),
//! which are already provided by [`rs_merkle`].
//!
//! These implementations are opt-in and only provided if the corresponding features are enabled.

#[cfg(any(test, feature = "blake3"))]
pub mod blake3;
#[cfg(any(test, feature = "blake3"))]
pub use blake3::Blake3;

#[cfg(feature = "sha3")]
pub mod sha3;
#[cfg(feature = "sha3")]
pub use sha3::{Sha3_256, Sha3_512};