diff options
Diffstat (limited to 'srp/src/groups.rs')
-rw-r--r-- | srp/src/groups.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srp/src/groups.rs b/srp/src/groups.rs index fbdeffb..90b5209 100644 --- a/srp/src/groups.rs +++ b/srp/src/groups.rs @@ -1,10 +1,10 @@ //! Groups from [RFC 5054](https://tools.ietf.org/html/rfc5054) -//! +//! //! It is strongly recommended to use them instead of custom generated //! groups. Additionally it is not recommended to use `G_1024` and `G_1536`, //! they are provided only for compatibility with the legacy software. -use types::SrpGroup; use num::BigUint; +use types::SrpGroup; lazy_static! { pub static ref G_1024: SrpGroup = SrpGroup { |