pbkdf2 0.4.0

Generic implementation of PBKDF2
Documentation
[dependencies.base64]
default-features = false
features = ["alloc"]
optional = true
version = "0.12"

[dependencies.crypto-mac]
version = "0.8.0"

[dependencies.hmac]
default-features = false
optional = true
version = "0.8"

[dependencies.rand]
default-features = false
optional = true
version = "0.7"

[dependencies.rand_core]
default-features = false
features = ["getrandom"]
optional = true
version = "0.5"

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

[dependencies.sha2]
default-features = false
optional = true
version = "0.9"

[dependencies.subtle]
default-features = false
optional = true
version = "2"
[dev-dependencies.hmac]
version = "0.8"

[dev-dependencies.sha-1]
version = "0.9"

[dev-dependencies.sha2]
version = "0.9"

[features]
default = ["include_simple", "thread_rng"]
include_simple = ["sha2", "hmac", "rand_core", "base64", "subtle"]
parallel = ["rayon", "std"]
std = []
thread_rng = ["rand"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Generic implementation of PBKDF2"
documentation = "https://docs.rs/pbkdf2"
edition = "2018"
keywords = ["crypto", "password", "hashing"]
license = "MIT OR Apache-2.0"
name = "pbkdf2"
repository = "https://github.com/RustCrypto/password-hashing"
version = "0.4.0"