From 74566e3e99af64de3bba76072190206f672879b6 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 3 Jan 2026 16:47:54 -0700 Subject: [PATCH] pkcs5 v0.8.0-rc.11 --- Cargo.lock | 2 +- cms/Cargo.toml | 10 +++++----- pkcs12/Cargo.toml | 6 +++--- pkcs5/Cargo.toml | 2 +- pkcs8/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8f6755e9..e29e0717e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,7 +1028,7 @@ dependencies = [ [[package]] name = "pkcs5" -version = "0.8.0-rc.10" +version = "0.8.0-rc.11" dependencies = [ "aes", "aes-gcm", diff --git a/cms/Cargo.toml b/cms/Cargo.toml index 25b2535b2..c7dd0853e 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -40,14 +40,14 @@ aes = "0.9.0-rc.2" getrandom = "0.4.0-rc.0" hex-literal = "1" pem-rfc7468 = "1" -pkcs5 = "0.8.0-rc.10" -pbkdf2 = "0.13.0-rc.2" +pkcs5 = "0.8.0-rc.11" +pbkdf2 = "0.13.0-rc.5" rand = "0.10.0-rc.5" -rsa = { version = "0.10.0-rc.10", features = ["sha2"] } -ecdsa = { version = "0.17.0-rc.9", features = ["digest", "pem"] } +rsa = { version = "0.10.0-rc.11", features = ["sha2"] } +ecdsa = { version = "0.17.0-rc.10", features = ["digest", "pem"] } p256 = "0.14.0-rc.2" tokio = { version = "1.45.1", features = ["macros", "rt"] } -x509-cert = { version = "0.3.0-rc.0", features = ["pem"] } +x509-cert = { version = "0.3.0-rc.2", features = ["pem"] } [features] std = ["der/std", "x509-cert/std", "spki/std"] diff --git a/pkcs12/Cargo.toml b/pkcs12/Cargo.toml index 7e32794ad..370df49d0 100644 --- a/pkcs12/Cargo.toml +++ b/pkcs12/Cargo.toml @@ -18,18 +18,18 @@ rust-version = "1.85" [dependencies] der = { version = "0.8.0-rc.10", features = ["alloc", "derive", "oid"], default-features = false } spki = { version = "0.8.0-rc.4", default-features = false } -x509-cert = { version = "0.3.0-rc.0", default-features = false } +x509-cert = { version = "0.3.0-rc.2", default-features = false } const-oid = { version = "0.10", features = ["db"], default-features = false } cms = { version = "=0.3.0-pre.0", default-features = false } # optional dependencies -digest = { version = "0.11.0-rc.4", features = ["alloc"], optional = true } +digest = { version = "0.11.0-rc.5", features = ["alloc"], optional = true } zeroize = { version = "1.8.1", optional = true, default-features = false } [dev-dependencies] hex-literal = "1" pkcs8 = { version = "0.11.0-rc.8", features = ["pkcs5"] } -pkcs5 = { version = "0.8.0-rc.10", features = ["pbes2", "3des"] } +pkcs5 = { version = "0.8.0-rc.11", features = ["pbes2", "3des"] } sha2 = "0.11.0-rc.3" whirlpool = "0.11.0-rc.3" diff --git a/pkcs5/Cargo.toml b/pkcs5/Cargo.toml index 4354c959a..23c2ab63f 100644 --- a/pkcs5/Cargo.toml +++ b/pkcs5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkcs5" -version = "0.8.0-rc.10" +version = "0.8.0-rc.11" description = """ Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5: Password-Based Cryptography Specification Version 2.1 (RFC 8018) diff --git a/pkcs8/Cargo.toml b/pkcs8/Cargo.toml index 6a83b5e1b..6391104a8 100644 --- a/pkcs8/Cargo.toml +++ b/pkcs8/Cargo.toml @@ -22,7 +22,7 @@ spki = "0.8.0-rc.4" # optional dependencies rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false } -pkcs5 = { version = "0.8.0-rc.10", optional = true, features = ["rand_core"] } +pkcs5 = { version = "0.8.0-rc.11", optional = true, features = ["rand_core"] } subtle = { version = "2", optional = true, default-features = false } [dev-dependencies]