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
b29943e7da
2 changed files with 13 additions and 1 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -2,6 +2,18 @@
|
||||||
|
|
||||||
Entries are listed in reverse chronological order.
|
Entries are listed in reverse chronological order.
|
||||||
|
|
||||||
|
## 1.1.0-pre.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.
|
||||||
|
* 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`.
|
||||||
|
|
||||||
## 1.0.3
|
## 1.0.3
|
||||||
|
|
||||||
* Adds `ConstantTimeEq` implementation for compressed points.
|
* Adds `ConstantTimeEq` implementation for compressed points.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "curve25519-dalek"
|
name = "curve25519-dalek"
|
||||||
version = "1.0.3"
|
version = "1.1.0-pre.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"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue