Skip to content

Commit adabbed

Browse files
committed
rename crate to ed448-goldilocks
1 parent 1921934 commit adabbed

4 files changed

Lines changed: 14 additions & 15 deletions

File tree

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.

ed448/Cargo.toml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
[package]
2+
name = "ed448-goldilocks"
3+
version = "0.17.0-pre.0"
24
authors = ["RustCrypto Developers"]
35
categories = ["cryptography"]
4-
description = """A pure-Rust implementation of Ed448 and Curve448 and Decaf.
5-
This crate also includes signing and verifying of Ed448 signatures.
6-
"""
7-
documentation = "https://docs.rs/ed448-goldilocks"
8-
exclude = [".gitignore", ".github/*"]
9-
edition = "2024"
10-
homepage = "https://docs.rs/ed448-goldilocks/"
116
keywords = ["cryptography", "decaf", "ed448", "ed448-goldilocks"]
12-
license = "BSD-3-Clause"
13-
name = "ed448"
14-
readme = "README.md"
7+
homepage = "https://docs.rs/ed448-goldilocks/"
158
repository = "https://github.com/RustCrypto/elliptic-curves/tree/master/ed448"
9+
documentation = "https://docs.rs/ed448-goldilocks"
10+
license = "BSD-3-Clause"
11+
edition = "2024"
1612
rust-version = "1.85"
17-
version = "0.17.0-pre.0"
13+
readme = "README.md"
14+
description = """A pure-Rust implementation of Ed448 and Curve448 and Decaf.
15+
This crate also includes signing and verifying of Ed448 signatures.
16+
"""
1817

1918
[dependencies]
2019
crypto-bigint = { version = "=0.7.0-pre.4", features = ["hybrid-array"], default-features = false }

ed448/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//!
44
//! # Usage
55
//! ```
6-
//! use ed448::{EdwardsPoint, CompressedEdwardsY, Scalar, elliptic_curve::hash2curve::ExpandMsgXof, sha3::Shake256};
6+
//! use ed448_goldilocks::{EdwardsPoint, CompressedEdwardsY, Scalar, elliptic_curve::hash2curve::ExpandMsgXof, sha3::Shake256};
77
//! use elliptic_curve::Field;
88
//! use rand_core::OsRng;
99
//!

ed448/src/sign.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! [`VerifyingKey`].
1010
//!
1111
//! ```
12-
//! use ed448::*;
12+
//! use ed448_goldilocks::*;
1313
//! use rand_core::SeedableRng;
1414
//! use rand_chacha::ChaChaRng;
1515
//!
@@ -56,7 +56,7 @@
5656
//! This is an example of using the SHAKE-256 algorithm to sign and verify a message
5757
//! which is the normal default anyway but performed explicitly.
5858
//! ```
59-
//! use ed448::*;
59+
//! use ed448_goldilocks::*;
6060
//! use sha3::{Shake256, digest::Update};
6161
//! use rand_chacha::ChaChaRng;
6262
//! use rand_core::SeedableRng;

0 commit comments

Comments
 (0)