argon2 0.4.1

Pure Rust implementation of the Argon2 password hashing function with support for the Argon2d, Argon2i, and Argon2id algorithmic variants
Documentation
[dependencies.base64ct]
version = "1"

[dependencies.blake2]
default-features = false
version = "0.10.4"

[dependencies.password-hash]
optional = true
version = "0.4"

[dependencies.rayon]
optional = true
version = "1.5"

[dependencies.zeroize]
optional = true
version = "1"
[dev-dependencies.hex-literal]
version = "0.3"

[dev-dependencies.password-hash]
features = ["rand_core"]
version = "0.4"

[features]
alloc = []
default = ["alloc", "password-hash", "rand"]
parallel = ["rayon", "std"]
rand = ["password-hash/rand_core"]
std = ["alloc", "password-hash/std"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the Argon2 password hashing function with support\nfor the Argon2d, Argon2i, and Argon2id algorithmic variants\n"
documentation = "https://docs.rs/argon2"
edition = "2021"
keywords = ["crypto", "password", "hashing"]
license = "MIT OR Apache-2.0"
name = "argon2"
readme = "README.md"
repository = "https://github.com/RustCrypto/password-hashes/tree/master/argon2"
resolver = "2"
rust-version = "1.57"
version = "0.4.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]