1[package]
2name = "hkdf"
3version = "0.11.0"
4authors = ["vladikoff", "warner", "RustCrypto Developers"]
5license = "MIT/Apache-2.0"
6homepage = "https://github.com/RustCrypto/KDFs/"
7repository = "https://github.com/RustCrypto/KDFs/"
8description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)"
9keywords = [ "HKDF", "Crypto" ]
10readme = "README.md"
11edition = "2018"
12
13[features]
14std = []
15
16[lib]
17name = "hkdf"
18path = "src/hkdf.rs"
19
20[dependencies]
21digest = "0.9"
22hmac = "0.11"
23
24[dev-dependencies]
25blobby = "0.3"
26crypto-tests = "0.5.*"
27hex = "0.4"
28sha-1 = "0.9"
29sha2 = "0.9"
30bencher = "0.1"
31
32[[bench]]
33name = "hkdf"
34harness = false
35