]> git.lizzy.rs Git - PAKEs.git/commitdiff
spake2 v0.3.1 (#92)
authorTony Arcieri <bascule@gmail.com>
Sun, 23 Jan 2022 00:04:38 +0000 (17:04 -0700)
committerGitHub <noreply@github.com>
Sun, 23 Jan 2022 00:04:38 +0000 (17:04 -0700)
Cargo.lock
spake2/CHANGELOG.md
spake2/Cargo.toml
spake2/src/lib.rs

index 4becd56b90dec8d84b93f54c5445b2a38c27fe99..cc2d18c8de3d3cead0eb4d062cafbc84e8bd9b09 100644 (file)
@@ -355,7 +355,7 @@ dependencies = [
 
 [[package]]
 name = "spake2"
-version = "0.3.0"
+version = "0.3.1"
 dependencies = [
  "bencher",
  "curve25519-dalek",
index 539422970a66c2ae8d7ac80eaf57a882c9780007..116f79bda4765470abd46a1e320625267a73dac5 100644 (file)
@@ -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])
index 711c90feb6856fd26212c5144fb5d90cc2ab925f..edee1c5e18e6aa3604cdfd94c4a49768fc2a95a3 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "spake2"
-version = "0.3.0"
+version = "0.3.1"
 authors = ["Brian Warner <warner@lothar.com>"]
 description = "The SPAKE2 password-authenticated key-exchange algorithm."
 documentation = "https://docs.rs/spake2"
index 7e8485f067ae56892b9a392f57502979c176ecfd..abc6f08ca88d07074296e41bf1b15cb65d504063 100644 (file)
@@ -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<u8>);