diff --git a/common/nym-kkt-ciphersuite/src/lib.rs b/common/nym-kkt-ciphersuite/src/lib.rs index e72d873a87..2788d3cc3a 100644 --- a/common/nym-kkt-ciphersuite/src/lib.rs +++ b/common/nym-kkt-ciphersuite/src/lib.rs @@ -351,6 +351,17 @@ impl Display for Ciphersuite { } } +impl Default for Ciphersuite { + fn default() -> Self { + Self::new( + KEM::MlKem768, + HashFunction::Blake3, + SignatureScheme::Ed25519, + HashLength::Default, + ) + } +} + #[cfg(test)] mod tests { use super::*;