argon2-async 0.2.0

async wrapper for the argon2 crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! An async wrapper around [`argon2`]
//!
//! [`argon2`]: (argon2)

#![deny(missing_docs)]

mod config;
mod error;
mod hasher;
mod verifier;

/// A type helper for every result returned by this crate.
pub type Result<T> = std::result::Result<T, Error>;

pub use config::*;
pub use error::Error;
pub use hasher::*;
pub use verifier::*;