1
2
3
4
5
6
7
8
9
10
11
//! Hash function abstraction & digest types.

pub mod siphash;
mod r#trait;
mod wrappers;

pub use r#trait::*;
pub use wrappers::*;

#[cfg(test)]
pub(crate) mod mock;