diff --git a/curve25519-dalek/Cargo.toml b/curve25519-dalek/Cargo.toml index 06eb10348..b722620c2 100644 --- a/curve25519-dalek/Cargo.toml +++ b/curve25519-dalek/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "curve25519-dalek" +name = "curve25519-dalek-ml" # Before incrementing: # - update CHANGELOG # - update README if required by semver @@ -8,12 +8,13 @@ version = "4.1.2" edition = "2021" rust-version = "1.60.0" authors = ["Isis Lovecruft ", - "Henry de Valence "] + "Henry de Valence ", + "Michael Lodder "] readme = "README.md" license = "BSD-3-Clause" -repository = "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek" +repository = "https://github.com/mikelodder7/curve25519-dalek-ml/tree/main/curve25519-dalek" homepage = "https://github.com/dalek-cryptography/curve25519-dalek" -documentation = "https://docs.rs/curve25519-dalek" +documentation = "https://docs.rs/curve25519-dalek-ml" categories = ["cryptography", "no-std"] keywords = ["cryptography", "crypto", "ristretto", "curve25519", "ristretto255"] description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519" diff --git a/curve25519-dalek/README.md b/curve25519-dalek/README.md index c918d6959..d80486ea6 100644 --- a/curve25519-dalek/README.md +++ b/curve25519-dalek/README.md @@ -28,6 +28,9 @@ prime-order group from a non-prime-order Edwards curve. This provides the speed and safety benefits of Edwards curve arithmetic, without the pitfalls of cofactor-related abstraction mismatches. +**NOTE** The main difference with this crate and [curve25519-dalek](https://docs.rs/curve25519-dalek) is this adds +hash_to_curve for Edwards curves. + # Use ## Stable