-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGroupPreKeyBundle.proto
More file actions
26 lines (21 loc) · 854 Bytes
/
GroupPreKeyBundle.proto
File metadata and controls
26 lines (21 loc) · 854 Bytes
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
syntax = "proto3";
package e2ees;
option java_package = "org.e2eelab.proto.e2ees";
option java_outer_classname = "GroupPreKeyBundleProto";
option objc_class_prefix = "Objc";
option swift_prefix="Swift";
import "e2ees/E2eeAddress.proto";
import "e2ees/GroupInfo.proto";
/**
* Bundle for group pre-key.
*/
message GroupPreKeyBundle {
string version = 1; // The version.
uint32 e2ees_pack_id = 2; // The E2EE Security pack ID.
string session_id = 3; // The session ID.
string old_session_id = 4; // The optional old session ID.
E2eeAddress sender = 5; // The sender's address.
GroupInfo group_info = 11; // The group information.
uint32 sequence = 12; // The sequence of the related group session.
bytes group_seed = 13; // The seed for the related group session.
}