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

@@ -8,13 +8,14 @@ use subtle::ConstantTimeEq;
use digest::{Digest, Output};
use group::{
ff::{Field, PrimeField},
Group,
pub use ciphersuite::{
group::{
ff::{Field, PrimeField},
Group,
},
Ciphersuite,
};
pub use ciphersuite::Ciphersuite;
#[cfg(any(feature = "ristretto", feature = "ed25519"))]
mod dalek;
#[cfg(feature = "ristretto")]