Skip to content

Commit

Permalink
Update imports for DKG vector tests (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
natalieesk committed Dec 4, 2023
1 parent 1f31d50 commit 1e72000
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions frost-core/src/tests/vectors_dkg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,17 @@ use hex::{self};
use serde_json::Value;

use crate::{
frost::{
keys::{
dkg::{part2, part3},
*,
keys::{
dkg::{
part2, part3, round1::Package as Round1Package, round1::SecretPackage,
round2::Package as Round2Package,
},
*,
generate_secret_polynomial, KeyPackage, PublicKeyPackage, SigningShare,
VerifiableSecretSharingCommitment, VerifyingShare,
},
Ciphersuite, Field, Group, Header, Scalar, Signature, SigningKey, VerifyingKey,
Ciphersuite, Field, Group, Header, Identifier, Scalar, Signature, SigningKey, VerifyingKey,
};

use crate::tests::vectors_dkg::dkg::round1::Package as Round1Package;
use crate::tests::vectors_dkg::dkg::round1::SecretPackage;

use crate::tests::vectors_dkg::dkg::round2::Package as Round2Package;

/// Test vectors for a ciphersuite.
pub struct DKGTestVectors<C: Ciphersuite> {
secret: SigningKey<C>,
Expand Down

0 comments on commit 1e72000

Please sign in to comment.