Skip to content

Commit f02a09b

Browse files
committed
ed448: name ed448 signature
1 parent 03b77aa commit f02a09b

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Diff for: Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and can be easily used for bare-metal or lightweight WebAssembly programming.
1515
|-------------|-----------|-----------|---------------|-------|
1616
| [`dsa`] | [DSA](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/workflows/dsa/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/signatures/actions?query=workflow%3Adsa)
1717
| [`ecdsa`] | [ECDSA](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/workflows/ecdsa/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/signatures/actions?query=workflow%3Aecdsa) |
18-
| [`ed448`] | [Ed2448](https://en.wikipedia.org/wiki/EdDSA#Ed448) | [![crates.io]]() | [![Documentation]]() | [![ed25519 build]]() |
18+
| [`ed448`] | [Ed448](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/workflows/ed448-signature/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/signatures/actions?query=workflow%3Aed448-signature) |
1919
| [`ed25519`] | [Ed25519](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/workflows/ed25519/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/signatures/actions?query=workflow%3Aed25519)
2020
| [`rfc6979`] | [RFC6979](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)
2121

Diff for: ed448/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "ed448"
2+
name = "ed448-signature"
33
version = "0.1.0"
44
edition = "2021"
55
authors = ["RustCrypto Developers"]
@@ -9,8 +9,8 @@ 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"
13-
repository = "https://github.com/RustCrypto/signatures/tree/master/ed448"
12+
documentation = "https://docs.rs/ed448-signature"
13+
repository = "https://github.com/RustCrypto/signatures/tree/master/ed448-signature"
1414
readme = "README.md"
1515
categories = ["cryptography", "no-std"]
1616
keywords = ["crypto", "curve448", "ecc", "signature", "signing"]

Diff for: ed448/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ impl TryFrom<&[u8]> for Signature {
128128

129129
impl fmt::Debug for Signature {
130130
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
131-
f.debug_struct("ed448::Signature")
131+
f.debug_struct("ed448_signature::Signature")
132132
.field("R", self.r_bytes())
133133
.field("s", self.s_bytes())
134134
.finish()

Diff for: ed448/tests/hex.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Hexadecimal display/serialization tests.
22
3-
use ed448::Signature;
3+
use ed448_signature::Signature;
44
use hex_literal::hex;
55
use std::str::FromStr;
66

Diff for: ed448/tests/pkcs8.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
33
#![cfg(feature = "pkcs8")]
44

5-
use ed448::pkcs8::{DecodePrivateKey, DecodePublicKey, KeypairBytes, PublicKeyBytes};
5+
use ed448_signature::pkcs8::{DecodePrivateKey, DecodePublicKey, KeypairBytes, PublicKeyBytes};
66
use hex_literal::hex;
77

88
#[cfg(feature = "alloc")]
9-
use ed448::pkcs8::{EncodePrivateKey, EncodePublicKey};
9+
use ed448_signature::pkcs8::{EncodePrivateKey, EncodePublicKey};
1010

1111
/// Ed448 PKCS#8 v1 private key encoded as ASN.1 DER.
1212
const PKCS8_V1_DER: &[u8] = include_bytes!("examples/pkcs8-v1.der");

Diff for: ed448/tests/serde.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
#![cfg(feature = "serde")]
44

5-
use ed448::{Signature, SignatureBytes};
5+
use ed448_signature::{Signature, SignatureBytes};
66
use hex_literal::hex;
77

88
const EXAMPLE_SIGNATURE: SignatureBytes = hex!(

0 commit comments

Comments
 (0)