reorder imports

This commit is contained in:
Aitor Ruano 2020-01-22 14:50:27 +01:00
parent 28b13f448b
commit 13769a8f1b
1 changed files with 3 additions and 2 deletions

View File

@ -19,10 +19,11 @@ mod field;
mod math; mod math;
mod share; mod share;
use field::GF256;
pub use share::Share;
use std::collections::HashSet; use std::collections::HashSet;
pub use share::Share;
use field::GF256;
/// Tuple struct which implements methods to generate shares and recover secrets over a 256 bits Galois Field. /// Tuple struct which implements methods to generate shares and recover secrets over a 256 bits Galois Field.
/// Its only parameter is the minimum shares threshold. /// Its only parameter is the minimum shares threshold.
/// ///