Skip to content

Commit

Permalink
Merge pull request #1 from baloo/baloo/cms/aes-kw-pre
Browse files Browse the repository at this point in the history
cms: use aes-kw pre-release
  • Loading branch information
nemynm authored Nov 1, 2024
2 parents fa50632 + 73b0b44 commit 8dde07b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 77 deletions.
94 changes: 19 additions & 75 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,11 @@ tls_codec_derive = { path = "./tls_codec/derive" }
x509-tsp = { path = "./x509-tsp" }
x509-cert = { path = "./x509-cert" }
x509-ocsp = { path = "./x509-ocsp" }

# https://github.com/RustCrypto/key-wraps/pull/34
# https://github.com/RustCrypto/key-wraps/pull/35
aes-kw = { git = "https://github.com/RustCrypto/key-wraps.git" }

# https://github.com/RustCrypto/KDFs/pull/102
ansi-x963-kdf = { git = "https://github.com/RustCrypto/KDFs.git" }

4 changes: 2 additions & 2 deletions cms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ x509-cert = { version = "=0.3.0-pre.0", default-features = false }

# optional dependencies
aes = { version = "=0.9.0-pre.2", optional = true }
aes-kw = { version ="0.2.1", optional = true }
ansi-x963-kdf = { git = "https://github.com/RustCrypto/KDFs.git", version = "0.1.0", optional = true }
aes-kw = { version ="=0.3.0-pre", optional = true }
ansi-x963-kdf = { version = "0.1.0", optional = true }
async-signature = { version = "=0.6.0-pre.4", features = ["digest", "rand_core"], optional = true }
cbc = { version = "=0.2.0-pre.2", optional = true }
cipher = { version = "=0.5.0-pre.7", features = ["alloc", "block-padding", "rand_core"], optional = true }
Expand Down

0 comments on commit 8dde07b

Please sign in to comment.