Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tuddman committed May 2, 2024
1 parent c9a192b commit 87ebdaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proto/mls/message_contents/content.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
}

0 comments on commit 87ebdaa

Please sign in to comment.