1pub mod config; 2pub mod error; 3pub mod support; 4 5pub type HashResult<T, E = error::Error> = Result<T, E>; 6 7pub struct Hash { 8 algorithm: argon2::Argon2<'static>, 9} 10 11// re-export 12pub use soph_core::*;