Merge branch 'master' into develop

This commit is contained in:
Isis Lovecruft 2017-08-01 03:07:16 +00:00
commit fa481903d3
Failed to extract signature
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "curve25519-dalek" name = "curve25519-dalek"
version = "0.9.3" version = "0.10.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"

View file

@ -44,7 +44,7 @@ Extensive documentation is available [here](https://docs.rs/curve25519-dalek).
To install, add the following to the dependencies section of your project's To install, add the following to the dependencies section of your project's
`Cargo.toml`: `Cargo.toml`:
curve25519-dalek = "^0.9" curve25519-dalek = "^0.10"
Then, in your library or executable source, add: Then, in your library or executable source, add:
@ -56,7 +56,7 @@ fast.
## TODO ## TODO
We intend to stabilise the following before curve25519-dalek-1.0.0:
* Implement hashing to a point on the curve (Elligator). * Implement hashing to a point on the curve (Elligator).
* Make a new `mask` type in `subtle.rs` and return that instead of `u8`s. * Finish Ristretto (Decaf for curve25519) implementation.
* Implement all utilities in Golang's `crypto/subtle` package, and
move the module to its own crate.