From 87ebdaa10ead55459f172e8f6a463b9e8d46240a Mon Sep 17 00:00:00 2001 From: tuddman Date: Thu, 2 May 2024 20:47:43 +0200 Subject: [PATCH] fix: typo --- proto/mls/message_contents/content.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/mls/message_contents/content.proto b/proto/mls/message_contents/content.proto index 97bfd95..c242e94 100644 --- a/proto/mls/message_contents/content.proto +++ b/proto/mls/message_contents/content.proto @@ -91,13 +91,13 @@ message MessageHistoryReply { // Where the messages can be retrieved from string url = 2; // Generated input 'secret' for the AES Key used to encrypt the message-bundle - MessagerHistoryKeyType encryption_key = 3; - // Generated inut 'secret' for the HMAC Key used to sign the bundle_hash - MessagerHistoryKeyType signing_key = 4; + MessageHistoryKeyType encryption_key = 3; + // Generated input 'secret' for the HMAC Key used to sign the bundle_hash + MessageHistoryKeyType signing_key = 4; // HMAC Signature of the message-bundle bytes bundle_hash = 5; } -message MessagerHistoryKeyType { +message MessageHistoryKeyType { oneof key { bytes chacha20_poly1305 = 1; } }