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
dc2df3cb70
2 changed files with 15 additions and 1 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -2,6 +2,20 @@
|
||||||
|
|
||||||
Entries are listed in reverse chronological order.
|
Entries are listed in reverse chronological order.
|
||||||
|
|
||||||
|
## 1.2.3
|
||||||
|
|
||||||
|
* Fix an issue identified by a Quarkslab audit (and Jack Grigg), where manually
|
||||||
|
constructing unreduced `Scalar` values, as needed for X/Ed25519, and then
|
||||||
|
performing scalar/scalar arithmetic could compute incorrect results.
|
||||||
|
* Switch to upstream Rust intrinsics for the IFMA backend now that they exist in
|
||||||
|
Rust and don't need to be defined locally.
|
||||||
|
* Ensure that the NAF computation works correctly, even for parameters never
|
||||||
|
used elsewhere in the codebase.
|
||||||
|
* Minor refactoring to EdwardsPoint decompression.
|
||||||
|
* Fix broken links in documentation.
|
||||||
|
* Fix compilation on nightly broken due to changes to the `#[doc(include)]` path
|
||||||
|
root (not quite correctly done in 1.2.2).
|
||||||
|
|
||||||
## 1.2.2
|
## 1.2.2
|
||||||
|
|
||||||
* Fix a typo in an internal doc-comment.
|
* Fix a typo in an internal doc-comment.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "curve25519-dalek"
|
name = "curve25519-dalek"
|
||||||
version = "1.2.2"
|
version = "1.2.3"
|
||||||
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