Merge branch 'release/1.1.3'

This commit is contained in:
Henry de Valence 2019-02-15 13:48:39 -08:00
commit ca6305232f
4 changed files with 7 additions and 3 deletions

View file

@ -2,6 +2,10 @@
Entries are listed in reverse chronological order.
## 1.1.3
* Reverts the change in 1.1.0 to allow owned and borrowed RNGs, which caused a breakage due to a subtle interaction with ownership rules. (The `RngCore` change is retained).
## 1.1.2
* Disabled KaTeX on `docs.rs` pending proper [support upstream](https://github.com/rust-lang/docs.rs/issues/302).

View file

@ -1,6 +1,6 @@
[package]
name = "curve25519-dalek"
version = "1.1.2"
version = "1.1.3"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md"

View file

@ -638,7 +638,7 @@ impl RistrettoPoint {
/// discrete log of the output point with respect to any other
/// point should be unknown. The map is applied twice and the
/// results are added, to ensure a uniform distribution.
pub fn random<T: RngCore + CryptoRng>(mut rng: T) -> Self {
pub fn random<R: RngCore + CryptoRng>(rng: &mut R) -> Self {
let mut uniform_bytes = [0u8; 64];
rng.fill_bytes(&mut uniform_bytes);

View file

@ -527,7 +527,7 @@ impl Scalar {
/// let mut csprng: OsRng = OsRng::new().unwrap();
/// let a: Scalar = Scalar::random(&mut csprng);
/// # }
pub fn random<T: RngCore + CryptoRng>(mut rng: T) -> Self {
pub fn random<R: RngCore + CryptoRng>(rng: &mut R) -> Self {
let mut scalar_bytes = [0u8; 64];
rng.fill_bytes(&mut scalar_bytes);
Scalar::from_bytes_mod_order_wide(&scalar_bytes)