Skip to content

Commit 367cef8

Browse files
authored
Use released versions of hmac and hash crates (#116)
1 parent faafada commit 367cef8

7 files changed

Lines changed: 40 additions & 35 deletions

File tree

Cargo.lock

Lines changed: 30 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ members = [
1212
opt-level = 2
1313

1414
[patch.crates-io]
15-
belt-hash = { git = "https://github.com/RustCrypto/hashes.git" }
16-
sha1 = { git = "https://github.com/RustCrypto/hashes.git" }
17-
sha2 = { git = "https://github.com/RustCrypto/hashes.git" }
18-
19-
hmac = { git = "https://github.com/RustCrypto/MACs.git" }
2015
cmac = { git = "https://github.com/RustCrypto/MACs.git" }
2116

2217
# https://github.com/RustCrypto/block-ciphers/pull/472

ansi-x963-kdf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ digest = "=0.11.0-pre.10"
1717

1818
[dev-dependencies]
1919
hex-literal = "1"
20-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
20+
sha2 = { version = "=0.11.0-pre.5", default-features = false }

bake-kdf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = ["crypto", "bake", "stb", "kdf"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
belt-hash = { version = "0.2.0-pre.4", default-features = false }
16+
belt-hash = { version = "0.2.0-pre.5", default-features = false }
1717

1818
[dev-dependencies]
1919
hex-literal = "1"

concat-kdf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ digest = "=0.11.0-pre.10"
1717

1818
[dev-dependencies]
1919
hex-literal = "1"
20-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
20+
sha2 = { version = "=0.11.0-pre.5", default-features = false }

hkdf/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ edition = "2024"
1313
rust-version = "1.85"
1414

1515
[dependencies]
16-
hmac = "=0.13.0-pre.4"
16+
hmac = "=0.13.0-pre.5"
1717

1818
[dev-dependencies]
1919
blobby = "=0.4.0-pre.0"
20-
hex-literal = "1"
21-
sha1 = { version = "=0.11.0-pre.4", default-features = false }
22-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
20+
hex-literal = "0.4"
21+
sha1 = { version = "=0.11.0-pre.5", default-features = false }
22+
sha2 = { version = "=0.11.0-pre.5", default-features = false }
2323

2424
[package.metadata.docs.rs]
2525
all-features = true

kbkdf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ digest = { version = "0.11.0-pre.10", default-features = false, features = ["mac
1919
[dev-dependencies]
2020
hex-literal = "1"
2121
hex = "0.4"
22-
hmac = { version = "0.13.0-pre.4", default-features = false }
23-
sha2 = { version = "0.11.0-pre.4", default-features = false }
24-
sha1 = { version = "0.11.0-pre.4", default-features = false }
22+
hmac = { version = "0.13.0-pre.5", default-features = false }
23+
sha2 = { version = "0.11.0-pre.5", default-features = false }
24+
sha1 = { version = "0.11.0-pre.5", default-features = false }
2525
cmac = "0.8.0-pre.2"
2626
aes = "0.9.0-pre.2"
2727

0 commit comments

Comments
 (0)