aingle-argon2 0.1.0

Pure Rust Argon2 password hashing - optimized for AIngle
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod octword;
#[macro_use]
mod block;
mod argon2;
pub mod verifier;

pub use argon2::argon2i_simple;
pub use argon2::argon2d_simple;
pub use argon2::argon2id_simple;
pub use argon2::defaults;
pub use argon2::Argon2;
pub use argon2::ParamErr;
pub use argon2::Variant;