diff options
author | Brian Warner <warner@lothar.com> | 2018-12-20 16:01:37 -0500 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-12-20 16:01:37 -0500 |
commit | aa9674bbc150bac4352b80382724daf052072c8c (patch) | |
tree | 30f75541594804731da4ff06b1fdefaed334551b /srp/src/groups.rs | |
parent | bd19c404c6a6f316871518ace644d8ef871afc61 (diff) | |
parent | 3711fa0839f0013a2ac545c8356602d2c51e1ea8 (diff) | |
download | PAKEs-aa9674bbc150bac4352b80382724daf052072c8c.tar.xz |
Merge branch 'edition-2018'
Diffstat (limited to 'srp/src/groups.rs')
-rw-r--r-- | srp/src/groups.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/srp/src/groups.rs b/srp/src/groups.rs index 90b5209..d5c5fb9 100644 --- a/srp/src/groups.rs +++ b/srp/src/groups.rs @@ -3,8 +3,9 @@ //! 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 crate::types::SrpGroup; +use lazy_static::lazy_static; use num::BigUint; -use types::SrpGroup; lazy_static! { pub static ref G_1024: SrpGroup = SrpGroup { |