aboutsummaryrefslogtreecommitdiff
path: root/spake2/src/lib.rs
diff options
context:
space:
mode:
authorTony Arcieri <bascule@gmail.com>2022-01-22 17:04:38 -0700
committerGitHub <noreply@github.com>2022-01-22 17:04:38 -0700
commite9a4198c902e380d023b7a79ba98b5aa41de8811 (patch)
treee0774853c1afe055ac733cb92c3bd66642409a64 /spake2/src/lib.rs
parentfc208141e214d9495585039f64d1911c9de21576 (diff)
downloadPAKEs-e9a4198c902e380d023b7a79ba98b5aa41de8811.tar.xz
spake2 v0.3.1 (#92)
Diffstat (limited to 'spake2/src/lib.rs')
-rw-r--r--spake2/src/lib.rs2
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>);