-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGroupUpdateKeyBundle.proto
More file actions
30 lines (25 loc) · 1.2 KB
/
GroupUpdateKeyBundle.proto
File metadata and controls
30 lines (25 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
syntax = "proto3";
package e2ees;
option java_package = "org.e2eelab.proto.e2ees";
option java_outer_classname = "GroupUpdateKeyBundleProto";
option objc_class_prefix = "Objc";
option swift_prefix="Swift";
import "e2ees/E2eeAddress.proto";
import "e2ees/GroupInfo.proto";
import "e2ees/GroupMemberInfo.proto";
/**
* Bundle for group update key.
*/
message GroupUpdateKeyBundle {
string version = 1; // The version.
uint32 e2ees_pack_id = 2; // The E2EE Security pack ID.
string session_id = 3; // The session ID.
E2eeAddress sender = 4; // The sender's address.
bool adding = 11; // The flag for identifying this bundle is used for adding or not.
GroupInfo group_info = 12; // Thi group information.
uint32 sequence = 13; // The sequence of the chain key.
bytes chain_key = 14; // The chain key.
bytes sign_public_key = 15; // The signed public key part of the user's uploaded public identity key.
repeated GroupMemberInfo adding_member_info_list = 16; // The list of adding group member information.
bytes group_seed = 17; // The group random seed.
}