Skip to content

Commit da7cd13

Browse files
authored
rfc6979 v0.6.0-rc.0 (#1397)
This release is a significant rewrite that includes the new `KGenerator` API and integration with `crypto-bigint`. See #1395.
1 parent ed4b91c commit da7cd13

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dsa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ digest = "0.11"
2121
crypto-bigint = { version = "0.7", default-features = false, features = ["alloc", "zeroize"] }
2222
crypto-common = { version = "0.2", default-features = false, features = ["rand_core"] }
2323
crypto-primes = { version = "0.7", default-features = false }
24-
rfc6979 = { version = "=0.6.0-pre.0" }
24+
rfc6979 = "0.6.0-rc.0"
2525
sha2 = { version = "0.11", default-features = false }
2626
signature = { version = "3", default-features = false, features = ["alloc", "digest", "rand_core"] }
2727
zeroize = { version = "1", default-features = false, features = ["alloc"] }

ecdsa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ zeroize = { version = "1.5", default-features = false }
2424
# optional dependencies
2525
der = { version = "0.8", optional = true }
2626
digest = { version = "0.11", optional = true, default-features = false, features = ["oid"] }
27-
rfc6979 = { version = "=0.6.0-pre.0", optional = true }
27+
rfc6979 = { version = "0.6.0-rc.0", optional = true }
2828
serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
2929
sha2 = { version = "0.11", optional = true, default-features = false, features = ["oid"] }
3030
spki = { version = "0.8", optional = true, default-features = false }

rfc6979/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfc6979"
3-
version = "0.6.0-pre.0"
3+
version = "0.6.0-rc.0"
44
description = """
55
Pure Rust implementation of RFC6979: Deterministic Usage of the Digital Signature Algorithm (DSA)
66
and Elliptic Curve Digital Signature Algorithm (ECDSA)
@@ -17,7 +17,6 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
bigint = { package = "crypto-bigint", version = "0.7.5", default-features = false }
20-
ctutils = "0.4"
2120
hmac = { version = "0.13", default-features = false }
2221

2322
[dev-dependencies]

0 commit comments

Comments
 (0)