diff options
author | Brian Warner <warner@lothar.com> | 2018-10-16 15:14:26 -0700 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-10-16 15:14:26 -0700 |
commit | 04f891874c8ed66d124456d6a0189ecfc24bd597 (patch) | |
tree | 18bfcce06f61da5aaee6c8f940d712c0b916dbed /srp/src/groups.rs | |
parent | 3fd70bba96746c323881aee4aab2b38ef2eb5b2e (diff) | |
parent | 5d9ca6ab306e713fc0282aebde5c9196ad86b7ab (diff) | |
download | PAKEs-04f891874c8ed66d124456d6a0189ecfc24bd597.tar.xz |
Merge branch 'rustfmt'
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 { |