mirror of
https://github.com/RustCrypto/signatures
synced 2026-06-21 13:45:42 +00:00
ecdsa v0.17.0-rc.17 (#1304)
This commit is contained in:
Generated
+5
-4
@@ -457,7 +457,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ecdsa"
|
||||
version = "0.17.0-rc.16"
|
||||
version = "0.17.0-rc.17"
|
||||
dependencies = [
|
||||
"der",
|
||||
"digest",
|
||||
@@ -505,8 +505,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
||||
|
||||
[[package]]
|
||||
name = "elliptic-curve"
|
||||
version = "0.14.0-rc.30"
|
||||
source = "git+https://github.com/RustCrypto/traits#4aa20faef303aa04f61892d33c229314bdcea43f"
|
||||
version = "0.14.0-rc.31"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b148a81cede8f4023248f980cffdf7611c46f2add469c6980e815b7c5b764ba5"
|
||||
dependencies = [
|
||||
"base16ct",
|
||||
"crypto-bigint",
|
||||
@@ -1434,7 +1435,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
||||
dependencies = [
|
||||
"fastrand",
|
||||
"getrandom 0.3.4",
|
||||
"getrandom 0.4.2",
|
||||
"once_cell",
|
||||
"rustix",
|
||||
"windows-sys",
|
||||
|
||||
@@ -29,5 +29,3 @@ rfc6979 = { path = "./rfc6979" }
|
||||
slh-dsa = { path = "./slh-dsa" }
|
||||
xmss = { path = "./xmss" }
|
||||
bign-genk = { path = "./bign-genk" }
|
||||
|
||||
elliptic-curve = { git = "https://github.com/RustCrypto/traits" }
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ecdsa"
|
||||
version = "0.17.0-rc.16"
|
||||
version = "0.17.0-rc.17"
|
||||
description = """
|
||||
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
|
||||
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing
|
||||
@@ -17,7 +17,7 @@ edition = "2024"
|
||||
rust-version = "1.85"
|
||||
|
||||
[dependencies]
|
||||
elliptic-curve = { version = "0.14.0-rc.30", default-features = false, features = ["sec1"] }
|
||||
elliptic-curve = { version = "0.14.0-rc.31", default-features = false, features = ["sec1"] }
|
||||
signature = { version = "3.0.0-rc.10", default-features = false, features = ["rand_core"] }
|
||||
zeroize = { version = "1.5", default-features = false }
|
||||
|
||||
@@ -30,7 +30,7 @@ sha2 = { version = "0.11", optional = true, default-features = false, features =
|
||||
spki = { version = "0.8", optional = true, default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
elliptic-curve = { version = "0.14.0-rc.30", default-features = false, features = ["dev"] }
|
||||
elliptic-curve = { version = "0.14.0-rc.31", default-features = false, features = ["dev"] }
|
||||
hex-literal = "1"
|
||||
sha2 = { version = "0.11", default-features = false }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user