mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
77b4c7b30d
2 changed files with 7 additions and 10 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -2,17 +2,14 @@
|
||||||
|
|
||||||
Entries are listed in reverse chronological order.
|
Entries are listed in reverse chronological order.
|
||||||
|
|
||||||
## 1.1.0-pre.0
|
## 1.1.0
|
||||||
|
|
||||||
* Restructures the source tree into `serial` and `vector` backends.
|
|
||||||
* Adds a new IFMA backend which sets speed records.
|
|
||||||
* Adds support for precomputation for multiscalar multiplication.
|
* Adds support for precomputation for multiscalar multiplication.
|
||||||
|
* Restructures the internal source tree into `serial` and `vector` backends (no change to external API).
|
||||||
|
* Adds a new IFMA backend which sets speed records.
|
||||||
|
* The `avx2_backend` feature is now an alias for the `simd_backend` feature, which autoselects an appropriate vector backend (currently AVX2 or IFMA).
|
||||||
* Replaces the `rand` dependency with `rand_core`.
|
* Replaces the `rand` dependency with `rand_core`.
|
||||||
* Generalizes trait bounds on
|
* Generalizes trait bounds on `RistrettoPoint::random()` and `Scalar::random()` to allow owned and borrowed RNGs and to allow `RngCore` instead of `Rng`.
|
||||||
- `RistrettoPoint::random()`
|
|
||||||
- `Scalar::random()`
|
|
||||||
to allow owned and borrowed RNGs and to allow `RngCore` instead of
|
|
||||||
`Rng`.
|
|
||||||
|
|
||||||
## 1.0.3
|
## 1.0.3
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "curve25519-dalek"
|
name = "curve25519-dalek"
|
||||||
version = "1.1.0-pre.0"
|
version = "1.1.0"
|
||||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||||
"Henry de Valence <hdevalence@hdevalence.ca>"]
|
"Henry de Valence <hdevalence@hdevalence.ca>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
@ -10,7 +10,7 @@ homepage = "https://dalek.rs/curve25519-dalek"
|
||||||
documentation = "https://docs.rs/curve25519-dalek"
|
documentation = "https://docs.rs/curve25519-dalek"
|
||||||
categories = ["cryptography", "no-std"]
|
categories = ["cryptography", "no-std"]
|
||||||
keywords = ["cryptography", "ristretto", "curve25519", "ECC"]
|
keywords = ["cryptography", "ristretto", "curve25519", "ECC"]
|
||||||
description = "A pure-Rust implementation of group operations on Ristretto and Curve25519"
|
description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519"
|
||||||
exclude = [
|
exclude = [
|
||||||
"**/.gitignore",
|
"**/.gitignore",
|
||||||
".gitignore",
|
".gitignore",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue