From cd4642c57e9b4676688a2bf8bbc1890717681419 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Fri, 9 Dec 2016 01:39:48 +0000 Subject: [PATCH 1/3] Fix typo in package description. --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d5dcf57..e9e795f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://code.ciph.re/isis/curve25519-dalek" homepage = "https://code.ciph.re/isis/curve25519-dalek" documentation = "https://docs.rs/curve25519-dalek" keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"] -description = "A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by x²+y² = 121665/121666 x²y² over GF(2²⁵⁵ - 19)." +description = "A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² = 121665/121666 x²y² over GF(2²⁵⁵ - 19)." exclude = [ ".gitignore" ] diff --git a/README.md b/README.md index 2331ef1..b47433d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # curve25519-dalek ![](https://img.shields.io/crates/v/curve25519-dalek.svg) ![](https://docs.rs/curve25519-dalek/badge.svg) **A low-level cryptographic library for point, group, field, and scalar -operations on a curve isomorphic to the twisted Edwards curve defined by x²+y² +operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² = 121665/121666 x²y² over GF(2²⁵⁵ - 19).** **SPOILER ALERT:** *The Twelfth Doctor's first encounter with the Daleks is in From 0c9d43e82a919debd9e18340e42cc7d1a209e471 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Fri, 9 Dec 2016 02:13:04 +0000 Subject: [PATCH 2/3] Fix another typo in the package description. --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e9e795f..85670b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://code.ciph.re/isis/curve25519-dalek" homepage = "https://code.ciph.re/isis/curve25519-dalek" documentation = "https://docs.rs/curve25519-dalek" keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"] -description = "A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² = 121665/121666 x²y² over GF(2²⁵⁵ - 19)." +description = "A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² = 1 - 121665/121666 x²y² over GF(2²⁵⁵ - 19)." exclude = [ ".gitignore" ] diff --git a/README.md b/README.md index b47433d..9406ed1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² -= 121665/121666 x²y² over GF(2²⁵⁵ - 19).** += 1 - 121665/121666 x²y² over GF(2²⁵⁵ - 19).** **SPOILER ALERT:** *The Twelfth Doctor's first encounter with the Daleks is in his second full episode, "Into the Dalek". A beleaguered ship of the "Combined From 02bbc4eec9b4c9ad156eea2ae9e2e6bf7b767dc6 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Fri, 9 Dec 2016 02:34:11 +0000 Subject: [PATCH 3/3] Bump version to 0.1.3 in Cargo.toml. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 85670b9..7db21b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.1.2" +version = "0.1.3" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md"