Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cut pkcs* crate prereleases #1459

Merged
merged 3 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
425 changes: 314 additions & 111 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,9 @@ x509-ocsp = { path = "./x509-ocsp" }
p256 = { git = "https://github.com/RustCrypto/elliptic-curves.git" }
# Pending a release of 0.11.0-pre.2
whirlpool = { git = "https://github.com/RustCrypto/hashes.git" }
# Pending a release of 0.2.0-pre
cbc = { git = "https://github.com/RustCrypto/block-modes.git" }
# Pending a release of 0.11.0-pre
salsa20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }
# Pending a release of 0.11.0-pre
aes-gcm = { git = "https://github.com/RustCrypto/AEADs.git" }
aead = { git = "https://github.com/RustCrypto/traits.git" }
ctr = { git = "https://github.com/RustCrypto/block-modes.git" }

# https://github.com/RustCrypto/formats/pull/1055
# https://github.com/RustCrypto/signatures/pull/809
Expand Down
6 changes: 3 additions & 3 deletions cmpv2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ rust-version = "1.75"

[dependencies]
crmf = "=0.3.0-pre"
der = { version = "=0.8.0-pre.0", features = ["alloc", "derive", "flagset", "oid"] }
spki = { version = "=0.8.0-pre.0" }
der = { version = "0.8.0-rc.0", features = ["alloc", "derive", "flagset", "oid"] }
spki = { version = "0.8.0-rc.0" }
x509-cert = { version = "=0.3.0-pre", default-features = false }

[dev-dependencies]
const-oid = { version = "=0.10.0-pre.2", features = ["db"] }
const-oid = { version = "0.10.0-rc.0", features = ["db"] }
hex-literal = "0.4"

[features]
Expand Down
8 changes: 4 additions & 4 deletions cms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ edition = "2021"
rust-version = "1.75"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["alloc", "derive", "oid", "pem"] }
spki = { version = "=0.8.0-pre.0" }
der = { version = "0.8.0-rc.0", features = ["alloc", "derive", "oid", "pem"] }
spki = { version = "0.8.0-rc.0" }
x509-cert = { version = "=0.3.0-pre", default-features = false, features = ["pem"] }
const-oid = { version = "=0.10.0-pre.2", features = ["db"] }
const-oid = { version = "0.10.0-rc.0", features = ["db"] }

# optional dependencies
aes = { version = "=0.9.0-pre", optional = true }
cbc = { version = "=0.2.0-pre", optional = true }
cbc = { version = "=0.2.0-pre.0", optional = true }
cipher = { version = "=0.5.0-pre.4", features = ["alloc", "block-padding", "rand_core"], optional = true }
rsa = { version = "=0.10.0-pre.1", optional = true }
sha1 = { version = "=0.11.0-pre.3", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions crmf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ rust-version = "1.75"

[dependencies]
cms = "=0.3.0-pre"
der = { version = "=0.8.0-pre.0", features = ["alloc", "derive"] }
spki = "=0.8.0-pre.0"
der = { version = "0.8.0-rc.0", features = ["alloc", "derive"] }
spki = "0.8.0-rc.0"
x509-cert = { version = "=0.3.0-pre", default-features = false }

[dev-dependencies]
const-oid = "=0.10.0-pre.2"
const-oid = "0.10.0-rc.0"

[features]
alloc = ["der/alloc"]
Expand Down
6 changes: 3 additions & 3 deletions gss-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ edition = "2021"
rust-version = "1.75"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["oid", "alloc"] }
spki = { version = "=0.8.0-pre.0" }
der = { version = "0.8.0-rc.0", features = ["oid", "alloc"] }
spki = { version = "0.8.0-rc.0" }
x509-cert = { version = "=0.3.0-pre", default-features = false }

[dev-dependencies]
der = { version = "=0.8.0-pre.0", features = ["oid", "pem", "alloc"] }
der = { version = "0.8.0-rc.0", features = ["oid", "pem", "alloc"] }
hex-literal = "0.4"
x509-cert = { version = "=0.3.0-pre", default-features = false, features = ["pem"] }

Expand Down
10 changes: 5 additions & 5 deletions pkcs1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pkcs1"
version = "0.8.0-pre.0"
version = "0.8.0-rc.0"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1:
RSA Cryptography Specifications Version 2.2 (RFC 8017)
Expand All @@ -16,14 +16,14 @@ edition = "2021"
rust-version = "1.72"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["oid"] }
spki = { version = "=0.8.0-pre.0" }
der = { version = "0.8.0-rc.0", features = ["oid"] }
spki = { version = "0.8.0-rc.0" }

# optional dependencies
pkcs8 = { version = "=0.11.0-pre.0", optional = true, default-features = false }
pkcs8 = { version = "0.11.0-rc.0", optional = true, default-features = false }

[dev-dependencies]
const-oid = { version = "=0.10.0-pre.2", features = ["db"] }
const-oid = { version = "0.10.0-rc.0", features = ["db"] }
hex-literal = "0.4"
tempfile = "3"

Expand Down
6 changes: 3 additions & 3 deletions pkcs12/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ edition = "2021"
rust-version = "1.75"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["alloc", "derive", "oid", "pem"] }
spki = { version = "=0.8.0-pre.0" }
der = { version = "0.8.0-rc.0", features = ["alloc", "derive", "oid", "pem"] }
spki = { version = "0.8.0-rc.0" }
x509-cert = { version = "=0.3.0-pre", default-features = false, features = ["pem"] }
const-oid = { version = "=0.10.0-pre.2", features = ["db"] }
const-oid = { version = "0.10.0-rc.0", features = ["db"] }
cms = "=0.3.0-pre"
digest = { version = "0.11.0-pre.8", features=["alloc"], optional = true }
zeroize = "1.8.1"
Expand Down
10 changes: 5 additions & 5 deletions pkcs5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pkcs5"
version = "0.8.0-pre.0"
version = "0.8.0-rc.0"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
Password-Based Cryptography Specification Version 2.1 (RFC 8018)
Expand All @@ -16,13 +16,13 @@ edition = "2021"
rust-version = "1.72"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["oid"] }
spki = { version = "=0.8.0-pre.0" }
der = { version = "0.8.0-rc.0", features = ["oid"] }
spki = { version = "0.8.0-rc.0" }

# optional dependencies
cbc = { version = "=0.2.0-pre", optional = true }
cbc = { version = "=0.2.0-pre.0", optional = true }
aes = { version = "=0.9.0-pre", optional = true, default-features = false }
aes-gcm = { version = "=0.11.0-pre", optional = true, default-features = false, features = ["aes"] }
aes-gcm = { version = "=0.11.0-pre.0", optional = true, default-features = false, features = ["aes"] }
des = { version = "=0.9.0-pre.0", optional = true, default-features = false }
pbkdf2 = { version = "=0.13.0-pre.0", optional = true, default-features = false, features = ["hmac"] }
rand_core = { version = "0.6.4", optional = true, default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions pkcs8/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pkcs8"
version = "0.11.0-pre.0"
version = "0.11.0-rc.0"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
Private-Key Information Syntax Specification (RFC 5208), with additional
Expand All @@ -17,12 +17,12 @@ edition = "2021"
rust-version = "1.72"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["oid"] }
spki = { version = "=0.8.0-pre.0" }
der = { version = "0.8.0-rc.0", features = ["oid"] }
spki = { version = "0.8.0-rc.0" }

# optional dependencies
rand_core = { version = "0.6", optional = true, default-features = false }
pkcs5 = { version = "=0.8.0-pre.0", optional = true, features = ["rand_core"] }
pkcs5 = { version = "0.8.0-rc.0", optional = true, features = ["rand_core"] }
subtle = { version = "2", optional = true, default-features = false }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions sec1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sec1"
version = "0.8.0-pre.1"
version = "0.8.0-rc.0"
description = """
Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats
including ASN.1 DER-serialized private keys as well as the
Expand All @@ -18,9 +18,9 @@ rust-version = "1.72"

[dependencies]
base16ct = { version = "0.2", optional = true, default-features = false }
der = { version = "=0.8.0-pre.0", optional = true, features = ["oid"] }
der = { version = "0.8.0-rc.0", optional = true, features = ["oid"] }
hybrid-array = { version = "0.2.0-rc.9", optional = true, default-features = false }
pkcs8 = { version = "=0.11.0-pre.0", optional = true, default-features = false }
pkcs8 = { version = "0.11.0-rc.0", optional = true, default-features = false }
serdect = { version = "=0.3.0-pre.0", optional = true, default-features = false, features = ["alloc"] }
subtle = { version = "2", optional = true, default-features = false }
zeroize = { version = "1", optional = true, default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions spki/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spki"
version = "0.8.0-pre.0"
version = "0.8.0-rc.0"
description = """
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
associated AlgorithmIdentifiers (i.e. OIDs)
Expand All @@ -16,7 +16,7 @@ edition = "2021"
rust-version = "1.72"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["oid"] }
der = { version = "0.8.0-rc.0", features = ["oid"] }

# Optional dependencies
arbitrary = { version = "1.2", features = ["derive"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions x509-cert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ edition = "2021"
rust-version = "1.75"

[dependencies]
const-oid = { version = "=0.10.0-pre.2", features = ["db"] }
der = { version = "=0.8.0-pre.0", features = ["alloc", "derive", "flagset", "oid"] }
spki = { version = "=0.8.0-pre.0", features = ["alloc"] }
const-oid = { version = "0.10.0-rc.0", features = ["db"] }
der = { version = "0.8.0-rc.0", features = ["alloc", "derive", "flagset", "oid"] }
spki = { version = "0.8.0-rc.0", features = ["alloc"] }

# optional dependencies
arbitrary = { version = "1.3", features = ["derive"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions x509-ocsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ edition = "2021"
rust-version = "1.75"

[dependencies]
const-oid = { version = "=0.10.0-pre.2", default-features = false, features = ["db"] }
der = { version = "=0.8.0-pre.0", features = ["alloc", "derive", "oid"] }
spki = { version = "=0.8.0-pre.0", features = ["alloc"] }
const-oid = { version = "0.10.0-rc.0", default-features = false, features = ["db"] }
der = { version = "0.8.0-rc.0", features = ["alloc", "derive", "oid"] }
spki = { version = "0.8.0-rc.0", features = ["alloc"] }
x509-cert = { version = "=0.3.0-pre", default-features = false }

# Optional
Expand Down
2 changes: 1 addition & 1 deletion x509-tsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "README.md"
rust-version = "1.75"

[dependencies]
der = { version = "=0.8.0-pre.0", features = ["alloc", "derive", "oid", "pem"] }
der = { version = "0.8.0-rc.0", features = ["alloc", "derive", "oid", "pem"] }
cms = { version = "=0.3.0-pre", features = ["alloc"] }
cmpv2 = { version = "=0.3.0-pre", features = ["alloc"] }
x509-cert = { version = "=0.3.0-pre", default-features = false }
Expand Down
Loading