Skip to content

Commit 56a3fee

Browse files
committed
Merge remote-tracking branch 'rust-crypto/master'
2 parents c4b4c04 + e8b3a04 commit 56a3fee

37 files changed

+106
-281
lines changed

.github/workflows/ed448-goldilocks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- ".github/workflows/ed448-goldilocks.yml"
77
- "ed448-goldilocks/**"
8+
- "hash2curve/**"
89
- "Cargo.*"
910
push:
1011
branches: master

.github/workflows/k256.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- ".github/workflows/k256.yml"
77
- "k256/**"
8+
- "hash2curve/**"
89
- "Cargo.*"
910
push:
1011
branches: master

.github/workflows/p256.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- ".github/workflows/p256.yml"
77
- "p256/**"
8+
- "hash2curve/**"
89
- "Cargo.*"
910
push:
1011
branches: master

.github/workflows/p384.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- ".github/workflows/p384.yml"
77
- "p384/**"
8+
- "hash2curve/**"
89
- "Cargo.*"
910
push:
1011
branches: master

.github/workflows/p521.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- ".github/workflows/p521.yml"
77
- "p521/**"
8+
- "hash2curve/**"
89
- "Cargo.*"
910
push:
1011
branches: master

.github/workflows/workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: dtolnay/rust-toolchain@master
2222
with:
23-
toolchain: 1.85.0
23+
toolchain: 1.88.0
2424
components: clippy
2525
- run: cargo clippy --all --all-features -- -D warnings
2626

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ members = [
2121
opt-level = 2
2222

2323
[patch.crates-io]
24-
ecdsa = { git = "https://github.com/RustCrypto/signatures.git" }
24+
elliptic-curve = { git = "https://github.com/RustCrypto/traits.git" }
2525
hash2curve = { path = "hash2curve" }
2626
primefield = { path = "primefield" }
2727
primeorder = { path = "primeorder" }

bign256/src/ecdsa.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ impl Debug for Signature {
166166
write!(f, "bignp256::dsa::Signature(")?;
167167

168168
for byte in self.to_bytes() {
169-
write!(f, "{:02X}", byte)?;
169+
write!(f, "{byte:02X}")?;
170170
}
171171

172172
write!(f, ")")

ed448-goldilocks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ THIS CODE HAS NOT BEEN AUDITED OR REVIEWED. USE AT YOUR OWN RISK.
1111

1212
## About
1313

14-
This crate provides a pure Rust implementation of Curve448, Edwards, Decaf, and Ristretto.
14+
This crate provides a pure Rust implementation of Curve448, Edwards, and Decaf.
1515
It is intended to be portable, fast, and safe.
1616

1717
## Usage

0 commit comments

Comments
 (0)