argon2_async/lib.rs
1//! An async wrapper around [`argon2`]
2//!
3//! [`argon2`]: (argon2)
4
5#![deny(missing_docs)]
6
7mod config;
8mod error;
9mod hasher;
10mod verifier;
11
12/// A type helper for every result returned by this crate.
13pub type Result<T> = std::result::Result<T, Error>;
14
15pub use config::*;
16pub use error::Error;
17pub use hasher::*;
18pub use verifier::*;