password-hash 0.5.0

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.4"

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

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

[package]
authors = ["RustCrypto Developers"]
categories = ["authentication", "cryptography", "no-std"]
description = """
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 = "https://docs.rs/password-hash"
edition = "2021"
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"
rust-version = "1.60"
version = "0.5.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]