From: Tony Arcieri Date: Sun, 23 Jan 2022 00:04:38 +0000 (-0700) Subject: spake2 v0.3.1 (#92) X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=e9a4198c902e380d023b7a79ba98b5aa41de8811;p=PAKEs.git spake2 v0.3.1 (#92) --- diff --git a/Cargo.lock b/Cargo.lock index 4becd56..cc2d18c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "spake2" -version = "0.3.0" +version = "0.3.1" dependencies = [ "bencher", "curve25519-dalek", diff --git a/spake2/CHANGELOG.md b/spake2/CHANGELOG.md index 5394229..116f79b 100644 --- a/spake2/CHANGELOG.md +++ b/spake2/CHANGELOG.md @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 0.3.0 (2022-01-22) +## 0.3.1 (2022-01-22) +### Changed +- Refactor internals ([#91]) + +[#91]: https://github.com/RustCrypto/PAKEs/pull/91 + +## 0.3.0 (2022-01-22) [YANKED] ### Added - Initial `no_std` support ([#87]) - `getrandom` feature ([#88]) diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml index 711c90f..edee1c5 100644 --- a/spake2/Cargo.toml +++ b/spake2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spake2" -version = "0.3.0" +version = "0.3.1" authors = ["Brian Warner "] description = "The SPAKE2 password-authenticated key-exchange algorithm." documentation = "https://docs.rs/spake2" diff --git a/spake2/src/lib.rs b/spake2/src/lib.rs index 7e8485f..abc6f08 100644 --- a/spake2/src/lib.rs +++ b/spake2/src/lib.rs @@ -248,7 +248,7 @@ use rand_core::{CryptoRng, RngCore}; #[cfg(feature = "getrandom")] use rand_core::OsRng; -/// Password +/// Password type. // TODO(tarcieri): avoid allocation? #[derive(PartialEq, Eq, Clone)] pub struct Password(Vec);