From 86a8849e98756770e5e513b7e226e875bc3a4826 Mon Sep 17 00:00:00 2001 From: Nicholas Molnar <65710+neekolas@users.noreply.github.com> Date: Thu, 18 Jan 2024 11:59:27 -0800 Subject: [PATCH] Add third slash --- openmls/src/ciphersuite/hpke.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmls/src/ciphersuite/hpke.rs b/openmls/src/ciphersuite/hpke.rs index 3818568789..7ab8ef93d3 100644 --- a/openmls/src/ciphersuite/hpke.rs +++ b/openmls/src/ciphersuite/hpke.rs @@ -68,14 +68,14 @@ impl From for Error { } } -// Context for HPKE encryption +/// Context for HPKE encryption #[derive(Debug, Clone, TlsSerialize, TlsDeserialize, TlsDeserializeBytes, TlsSize)] pub struct EncryptContext { label: VLBytes, context: VLBytes, } -// Context for HPKE encryption +/// Context for HPKE encryption impl EncryptContext { /// Create a new [`EncryptContext`] from a string label and the content bytes. pub fn new(label: &str, context: VLBytes) -> Self {