password-hash 0.6.0-rc.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.6"

[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"]

[lib]
name = "password_hash"
path = "src/lib.rs"

[package]
authors = ["RustCrypto Developers"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
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"
homepage = "https://github.com/RustCrypto/traits/tree/master/password-hash"
keywords = ["crypt", "mcf", "password", "pbkdf", "phc"]
license = "MIT OR Apache-2.0"
name = "password-hash"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
rust-version = "1.60"
version = "0.6.0-rc.0"

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

[[test]]
name = "encoding"
path = "tests/encoding.rs"

[[test]]
name = "hashing"
path = "tests/hashing.rs"

[[test]]
name = "password_hash"
path = "tests/password_hash.rs"

[[test]]
name = "test_vectors"
path = "tests/test_vectors.rs"