reorder imports
This commit is contained in:
parent
28b13f448b
commit
13769a8f1b
|
@ -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.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue