mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Merge branch 'release/1.1.0'
This commit is contained in:
commit
99de6a7039
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.
|
||||
|
||||
## 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.
|
||||
* 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`.
|
||||
* Generalizes trait bounds on
|
||||
- `RistrettoPoint::random()`
|
||||
- `Scalar::random()`
|
||||
to allow owned and borrowed RNGs and to allow `RngCore` instead of
|
||||
`Rng`.
|
||||
* Generalizes trait bounds on `RistrettoPoint::random()` and `Scalar::random()` to allow owned and borrowed RNGs and to allow `RngCore` instead of `Rng`.
|
||||
|
||||
## 1.0.3
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "curve25519-dalek"
|
||||
version = "1.1.0-pre.0"
|
||||
version = "1.1.0"
|
||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||
"Henry de Valence <hdevalence@hdevalence.ca>"]
|
||||
readme = "README.md"
|
||||
|
|
@ -10,7 +10,7 @@ homepage = "https://dalek.rs/curve25519-dalek"
|
|||
documentation = "https://docs.rs/curve25519-dalek"
|
||||
categories = ["cryptography", "no-std"]
|
||||
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 = [
|
||||
"**/.gitignore",
|
||||
".gitignore",
|
||||
|
|
|
|||
Loading…
Reference in a new issue