Skip to content

Commit 0c02ae7

Browse files
committed
ed448: drop -signature suffix from crate name
Crate name is now just `ed448`, like the Ed448 variant of EdDSA. The elliptic curve's name is Ed448-Goldilocks (or "edwards448")
1 parent 066595c commit 0c02ae7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -19,7 +19,7 @@ opt-level = 2
1919
# when pulling a member crate through git
2020
dsa = { path = "./dsa" }
2121
ecdsa = { path = "./ecdsa" }
22-
ed448-signature = { path = "./ed448" }
22+
ed448 = { path = "./ed448" }
2323
ed25519 = { path = "./ed25519" }
2424
lms-signature = { path = "./lms" }
2525
ml-dsa = { path = "./ml-dsa" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ and can be easily used for bare-metal or lightweight WebAssembly programming.
1616
| [`dsa`] | [Digital Signature Algorithm](https://en.wikipedia.org/wiki/Digital_Signature_Algorithm) | [![crates.io](https://img.shields.io/crates/v/dsa.svg)](https://crates.io/crates/dsa) | [![Documentation](https://docs.rs/dsa/badge.svg)](https://docs.rs/dsa) | [![dsa build](https://github.com/RustCrypto/signatures/actions/workflows/dsa.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/dsa.yml)
1717
| [`ecdsa`] | [Elliptic Curve DSA](https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm) | [![crates.io](https://img.shields.io/crates/v/ecdsa.svg)](https://crates.io/crates/ecdsa) | [![Documentation](https://docs.rs/ecdsa/badge.svg)](https://docs.rs/ecdsa) | [![ecdsa build](https://github.com/RustCrypto/signatures/actions/workflows/ecdsa.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/ecdsa.yml) |
1818
| [`ed25519`] | [EdDSA for Curve25519](https://en.wikipedia.org/wiki/EdDSA#Ed25519) | [![crates.io](https://img.shields.io/crates/v/ed25519.svg)](https://crates.io/crates/ed25519) | [![Documentation](https://docs.rs/ed25519/badge.svg)](https://docs.rs/ed25519) | [![ed25519 build](https://github.com/RustCrypto/signatures/actions/workflows/ed25519.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/ed25519.yml)
19-
| [`ed448`] | [EdDSA for Curve448](https://en.wikipedia.org/wiki/EdDSA#Ed448) | [![crates.io](https://img.shields.io/crates/v/ed448-signature.svg)](https://crates.io/crates/ed448-signature) | [![Documentation](https://docs.rs/ed448-signature/badge.svg)](https://docs.rs/ed448-signature) | [![ed448 build](https://github.com/RustCrypto/signatures/actions/workflows/ed448.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/ed448.yml)
19+
| [`ed448`] | [EdDSA for Curve448](https://en.wikipedia.org/wiki/EdDSA#Ed448) | [![crates.io](https://img.shields.io/crates/v/ed448.svg)](https://crates.io/crates/ed448) | [![Documentation](https://docs.rs/ed448/badge.svg)](https://docs.rs/ed448) | [![ed448 build](https://github.com/RustCrypto/signatures/actions/workflows/ed448.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/ed448.yml)
2020
| [`lms`] | [Leighton-Micali Signature](https://datatracker.ietf.org/doc/html/rfc8554) | [![crates.io](https://img.shields.io/crates/v/lms-signature.svg)](https://crates.io/crates/lms-signature) | [![Documentation](https://docs.rs/lms-signature/badge.svg)](https://docs.rs/ed25519) | [![lms build](https://github.com/RustCrypto/signatures/actions/workflows/lms.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/lms.yml)
2121
| [`ml-dsa`] | [Module Lattice DSA](https://csrc.nist.gov/pubs/fips/204/final) | [![crates.io](https://img.shields.io/crates/v/ml-dsa.svg)](https://crates.io/crates/ml-dsa) | [![Documentation](https://docs.rs/ml-dsa/badge.svg)](https://docs.rs/ml-dsa) | [![lms build](https://github.com/RustCrypto/signatures/actions/workflows/ml-dsa.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/lms.yml)
2222
| [`rfc6979`] | [Deterministic (EC)DSA Signatures](https://datatracker.ietf.org/doc/html/rfc6979) | [![crates.io](https://img.shields.io/crates/v/rfc6979.svg)](https://crates.io/crates/rfc6979) | [![Documentation](https://docs.rs/rfc6979/badge.svg)](https://docs.rs/rfc6979) | [![rfc6979 build](https://github.com/RustCrypto/signatures/actions/workflows/rfc6979.yml/badge.svg)](https://github.com/RustCrypto/signatures/actions/workflows/rfc6979.yml)

ed448/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "ed448-signature"
2+
name = "ed448"
33
version = "0.0.0"
44
edition = "2024"
55
authors = ["RustCrypto Developers"]
@@ -9,7 +9,7 @@ Edwards Digital Signature Algorithm (EdDSA) over Curve448 (as specified in RFC 7
99
support library providing signature type definitions and PKCS#8 private key
1010
decoding/encoding support
1111
"""
12-
documentation = "https://docs.rs/ed448-signature"
12+
documentation = "https://docs.rs/ed448"
1313
homepage = "https://github.com/RustCrypto/signatures/tree/master/ed448"
1414
repository = "https://github.com/RustCrypto/signatures"
1515
readme = "README.md"

ed448/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ dual licensed as above, without any additional terms or conditions.
4848

4949
[//]: # (badges)
5050

51-
[crate-image]: https://img.shields.io/crates/v/ed448-signature
52-
[crate-link]: https://crates.io/crates/ed448-signature
53-
[docs-image]: https://docs.rs/ed448-signature/badge.svg
54-
[docs-link]: https://docs.rs/ed448-signature/
51+
[crate-image]: https://img.shields.io/crates/v/ed448
52+
[crate-link]: https://crates.io/crates/ed448
53+
[docs-image]: https://docs.rs/ed448/badge.svg
54+
[docs-link]: https://docs.rs/ed448/
5555
[build-image]: https://github.com/RustCrypto/signatures/actions/workflows/ed448.yml/badge.svg
5656
[build-link]: https://github.com/RustCrypto/signatures/actions/workflows/ed448.yml
5757
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
@@ -67,6 +67,6 @@ dual licensed as above, without any additional terms or conditions.
6767

6868
[1]: https://en.wikipedia.org/wiki/EdDSA#Ed448
6969
[2]: https://tools.ietf.org/html/rfc7748
70-
[3]: https://docs.rs/ed448-signature/latest/ed448-signature/struct.Signature.html
70+
[3]: https://docs.rs/ed448/latest/ed448/struct.Signature.html
7171
[4]: https://docs.rs/signature/latest/signature/trait.Signer.html
7272
[5]: https://docs.rs/signature/latest/signature/trait.Verifier.html

ed448/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
//! # Using Ed448 generically over algorithm implementations/providers
1616
//!
17-
//! By using the `ed448-signature` crate, you can write code which signs and verifies
17+
//! By using the `ed448` crate, you can write code which signs and verifies
1818
//! messages using the Ed448 signature algorithm generically over any
1919
//! supported Ed448 implementation (see the next section for available
2020
//! providers).

0 commit comments

Comments
 (0)