diff options
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>); |