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

@@ -16,13 +16,14 @@ use thiserror::Error;
use zeroize::{Zeroize, Zeroizing};
use group::{
ff::{Field, PrimeField},
GroupEncoding,
use ciphersuite::{
group::{
ff::{Field, PrimeField},
GroupEncoding,
},
Ciphersuite,
};
use ciphersuite::Ciphersuite;
/// Encryption types and utilities used to secure DKG messages.
pub mod encryption;