diff --git a/mls-rs/src/group/framing.rs b/mls-rs/src/group/framing.rs index 116b1b27..3df6195c 100644 --- a/mls-rs/src/group/framing.rs +++ b/mls-rs/src/group/framing.rs @@ -620,6 +620,14 @@ impl FramedContent { } } +// Germ +impl MlsMessage { + //help us work with the private message + pub fn private_message(&self) -> Option { + self.clone().into_ciphertext() + } +} + #[cfg(test)] pub(crate) mod test_utils { #[cfg(feature = "private_message")]