[package]
edition = "2024"
name = "libvctrl_sha512"
version = "2.0.1"
authors = ["mroczect"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-dependency SHA512, HMAC-SHA512, HKDF-SHA512, and optional SHA384"
readme = "README.md"
keywords = [
"cryptography",
"sha512",
"hmac",
"hkdf",
"no-std",
]
categories = [
"cryptography",
"algorithms",
"no-std",
]
license = "ISC"
repository = "https://github.com/mroczect/libvctrl"
resolver = "2"
[features]
default = ["sha384"]
opt_size = []
sha384 = []
[lib]
name = "libvctrl_sha512"
path = "src/lib.rs"
[[test]]
name = "sha_tests"
path = "tests/sha_tests.rs"
[[bench]]
name = "sha384_bench"
path = "benches/sha384_bench.rs"
harness = false
required-features = ["sha384"]
[[bench]]
name = "sha512_bench"
path = "benches/sha512_bench.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false