use pakery_core::crypto::{CpaceGroup, Hash, Kdf, Mac};
pub trait Spake2PlusCiphersuite: Sized + 'static {
type Group: CpaceGroup;
type Hash: Hash;
type Kdf: Kdf;
type Mac: Mac;
const NH: usize;
const M_BYTES: &'static [u8];
const N_BYTES: &'static [u8];
}