password-hash 0.2.2

Traits which describe the functionality of password hashing algorithms, as well as a `no_std`-friendly implementation of the PHC string format (a well-defined subset of the Modular Crypt Format a.k.a. MCF)
Documentation
[dependencies.base64ct]
version = "1"

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

[dependencies.subtle]
default-features = false
version = "=2.4"

[features]
alloc = ["base64ct/alloc"]
default = ["rand_core"]
std = ["alloc", "base64ct/std", "rand_core/std"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Traits which describe the functionality of password hashing algorithms,\nas well as a `no_std`-friendly implementation of the PHC string format\n(a well-defined subset of the Modular Crypt Format a.k.a. MCF)\n"
documentation = "https://docs.rs/password-hash"
edition = "2018"
keywords = ["crypt", "mcf", "password", "pbkdf", "phc"]
license = "MIT OR Apache-2.0"
name = "password-hash"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits/tree/master/password-hash"
version = "0.2.2"
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]