diff options
author | Tony Arcieri <bascule@gmail.com> | 2022-01-22 17:04:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-22 17:04:38 -0700 |
commit | e9a4198c902e380d023b7a79ba98b5aa41de8811 (patch) | |
tree | e0774853c1afe055ac733cb92c3bd66642409a64 /spake2/src/lib.rs | |
parent | fc208141e214d9495585039f64d1911c9de21576 (diff) | |
download | PAKEs-e9a4198c902e380d023b7a79ba98b5aa41de8811.tar.xz |
spake2 v0.3.1 (#92)
Diffstat (limited to 'spake2/src/lib.rs')
-rw-r--r-- | spake2/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<u8>); |