Skip to content
Open
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
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ dpapi-pdu = { version = "0.1.0", path = "crates/dpapi-pdu" }
dpapi-transport = { version = "0.1.0", path = "crates/dpapi-transport" }
dpapi-native-transport = { version = "0.1.0", path = "crates/dpapi-native-transport" }

rsa = { version = "=0.10.0-rc.17", default-features = false }
rsa = { version = "=0.10.0-rc.18", default-features = false }
base64 = "0.22"
whoami = "2.1"
tracing-subscriber = "0.3"
Expand Down Expand Up @@ -203,24 +203,24 @@ tokio = { workspace = true, features = ["time", "rt", "rt-multi-thread"] }
# TODO: Remove when stable versions will be released
# RustCrypto crates
pkcs1 = "=0.8.0-rc.4"
pkcs8 = "=0.11.0-rc.11"
signature = "=3.0.0-rc.10"
p256 = "=0.14.0-rc.9"
primefield = "=0.14.0-rc.9"
primeorder = "=0.14.0-rc.9"
p384 = "=0.14.0-rc.9"
p521 = "=0.14.0-rc.9"
pkcs8 = "0.11"
signature = "3.0.0"
p256 = "=0.14.0-rc.10"
primefield = "=0.14.0-rc.12"
primeorder = "=0.14.0-rc.10"
p384 = "=0.14.0-rc.10"
p521 = "=0.14.0-rc.10"

# "Zero-knowledge Cryptography in Rust" crates
ff = { version = "=0.14.0-pre.0", default-features = false }
group = "=0.14.0-pre.0"
ff = { version = "0.14", default-features = false }
group = "0.14"
rustcrypto-ff = "=0.14.0-rc.1"
rustcrypto-ff_derive = "=0.14.0-rc.0"
rustcrypto-group = "=0.14.0-rc.1"

# "dalek cryptography" crates
ed25519-dalek = "=3.0.0-pre.6"
curve25519-dalek = "=5.0.0-pre.6"
ed25519-dalek = "=3.0.0-rc.0"
curve25519-dalek = "=5.0.0-rc.0"

[dev-dependencies]
base64.workspace = true
Expand Down
38 changes: 19 additions & 19 deletions crates/dpapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ dpapi-transport.workspace = true
sspi = { path = "../..", version = "0.21" } # public

kbkdf = "=0.1.0-rc.1"
elliptic-curve = { version = "=0.14.0-rc.31", features = ["sec1", "std"] }
p521 = { version = "=0.14.0-rc.9", features = ["ecdh"] }
p256 = { version = "=0.14.0-rc.9", features = ["ecdh"] }
p384 = { version = "=0.14.0-rc.9", features = ["ecdh"] }
elliptic-curve = { version = "=0.14.0-rc.33", features = ["sec1", "std"] }
p521 = { version = "=0.14.0-rc.10", features = ["ecdh"] }
p256 = { version = "=0.14.0-rc.10", features = ["ecdh"] }
p384 = { version = "=0.14.0-rc.10", features = ["ecdh"] }
concat-kdf = { git = "https://github.com/RustCrypto/KDFs.git", rev = "f2f5c03" } # TODO: We need the new version, but it's not released yet.
typenum = "1.20"
aes-kw = "0.3"
Expand All @@ -58,25 +58,25 @@ getrandom = "0.4"

# Pin transitive dependencies
# TODO: Remove when stable versions will be released
pkcs8 = "=0.11.0-rc.11"
signature = "=3.0.0-rc.10"
ecdsa = "=0.17.0-rc.17"
rfc6979 = "=0.5.0-rc.5"
aead = "=0.6.0-rc.10"
ed25519 = "=3.0.0-rc.4"
pbkdf2 = "=0.13.0-rc.10"
pkcs8 = "0.11"
signature = "3.0.0"
ecdsa = "=0.17.0-rc.18"
rfc6979 = "0.5"
aead = "0.6"
ed25519 = "3.0.0"
pbkdf2 = "0.13"
pkcs1 = "=0.8.0-rc.4"
rsa = { version = "=0.10.0-rc.17", default-features = false }
ff = { version = "=0.14.0-pre.0", default-features = false }
group = "=0.14.0-pre.0"
rsa = { version = "=0.10.0-rc.18", default-features = false }
ff = { version = "0.14", default-features = false }
group = "0.14"
rustcrypto-ff = "=0.14.0-rc.1"
rustcrypto-ff_derive = "=0.14.0-rc.0"
rustcrypto-group = "=0.14.0-rc.1"
primefield = "=0.14.0-rc.9"
primeorder = "=0.14.0-rc.9"
ed25519-dalek = "=3.0.0-pre.6"
curve25519-dalek = "=5.0.0-pre.6"
x25519-dalek = "=3.0.0-pre.6"
primefield = "=0.14.0-rc.12"
primeorder = "=0.14.0-rc.10"
ed25519-dalek = "=3.0.0-rc.0"
curve25519-dalek = "=5.0.0-rc.0"
x25519-dalek = "=3.0.0-rc.0"

[dev-dependencies]
paste = "1.0"
Expand Down