Skip to content

Commit

Permalink
Initial commit for KBKDF
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo committed Oct 29, 2023
1 parent 3023203 commit cb8284c
Show file tree
Hide file tree
Showing 5 changed files with 445 additions and 1 deletion.
17 changes: 17 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[workspace]
members = [
"hkdf",
"concat-kdf",
"hkdf",
"kbkdf",
]

[profile.dev]
Expand Down
29 changes: 29 additions & 0 deletions kbkdf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[package]
name = "kbkdf"
version = "0.1.0"
edition = "2018"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/RustCrypto/KDFs/"
repository = "https://github.com/RustCrypto/KDFs/"
description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)"
keywords = ["crypto", "HKDF", "KDF"]
categories = ["cryptography", "no-std"]
readme = "README.md"

[dependencies]
digest = "0.10"
hmac = "0.12.1"
# divrem can be dropped with MSRV >= 1.73
divrem = "1.0.0"

[dev-dependencies]
hex-literal = "0.2.2"
sha2 = "0.10"

[features]
std = ["hmac/std"]

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

0 comments on commit cb8284c

Please sign in to comment.