From 4ea1afb0116b82f76eff15f4c29e4a0eb01a89da Mon Sep 17 00:00:00 2001 From: jmwample <8297368+jmwample@users.noreply.github.com> Date: Thu, 6 Jun 2024 20:27:57 -0600 Subject: [PATCH] interim crate branch --- README.md | 7 +++++++ curve25519-dalek/Cargo.toml | 7 ++++--- curve25519-dalek/README.md | 6 ++++++ 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aced37391..ab6c26851 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,13 @@ # Dalek elliptic curve cryptography +## THIS IS A FORK FOR CONVENIENCE + +This fork contains an implementation of `elligator2` that is awaiting potential +inclusion in the mainstream curve25519-dalek crates. This crate exists for +use in the interim period. + + This repo contains pure-Rust crates for elliptic curve cryptography: | Crate | Description | Crates.io | Docs | CI | diff --git a/curve25519-dalek/Cargo.toml b/curve25519-dalek/Cargo.toml index 91b32a181..8d3d9b789 100644 --- a/curve25519-dalek/Cargo.toml +++ b/curve25519-dalek/Cargo.toml @@ -1,14 +1,15 @@ [package] -name = "curve25519-dalek" +name = "curve25519-elligator2" # Before incrementing: # - update CHANGELOG # - update README if required by semver # - if README was updated, also update module documentation in src/lib.rs -version = "4.1.2" +version = "0.1.0" edition = "2021" rust-version = "1.60.0" authors = ["Isis Lovecruft ", - "Henry de Valence "] + "Henry de Valence ", + "jmwample"] readme = "README.md" license = "BSD-3-Clause" repository = "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek" diff --git a/curve25519-dalek/README.md b/curve25519-dalek/README.md index c028a6e1c..0d9475803 100644 --- a/curve25519-dalek/README.md +++ b/curve25519-dalek/README.md @@ -1,6 +1,12 @@ # curve25519-dalek [![](https://buildstats.info/crate/curve25519-dalek)](https://crates.io/crates/curve25519-dalek) [![](https://img.shields.io/docsrs/curve25519-dalek)](https://docs.rs/curve25519-dalek) [![CI](https://github.com/dalek-cryptography/curve25519-dalek/actions/workflows/curve25519-dalek.yml/badge.svg?branch=main)](https://github.com/dalek-cryptography/curve25519-dalek/actions/workflows/curve25519-dalek.yml) +## THIS IS A FORK FOR CONVENIENCE + +This fork contains an implementation of elligator2 that is awaiting potential +inclusion in the mainstream curve25519-dalek crates. This crate exists for +use in the interim period. +