Have Ciphersuite re-export Group

This commit is contained in:
Luke Parker
2023-03-07 03:46:16 -05:00
parent af5702fccd
commit e08adcc1ac
22 changed files with 54 additions and 65 deletions

View File

@@ -3,11 +3,12 @@ use core::ops::Deref;
use zeroize::Zeroizing;
use rand_core::OsRng;
use group::{ff::Field, Group};
use ciphersuite::{
group::{ff::Field, Group},
Ciphersuite, Ed25519,
};
use multiexp::BatchVerifier;
use ciphersuite::{Ciphersuite, Ed25519};
use crate::{
SchnorrSignature,
aggregate::{SchnorrAggregator, SchnorrAggregate},

View File

@@ -5,9 +5,8 @@
use sha2::{Digest, Sha512};
use group::GroupEncoding;
use dalek_ff_group::Scalar;
use ciphersuite::{Ciphersuite, Ed25519};
use ciphersuite::{group::GroupEncoding, Ciphersuite, Ed25519};
use crate::SchnorrSignature;