mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-13 03:34:20 +00:00
17 lines
465 B
Protocol Buffer
17 lines
465 B
Protocol Buffer
|
package textsecure;
|
||
|
|
||
|
option java_package = "org.whispersystems.textsecure.internal.push";
|
||
|
option java_outer_classname = "ProvisioningProtos";
|
||
|
|
||
|
message ProvisionEnvelope {
|
||
|
optional bytes publicKey = 1;
|
||
|
optional bytes body = 2; // Encrypted ProvisionMessage
|
||
|
}
|
||
|
|
||
|
message ProvisionMessage {
|
||
|
optional bytes identityKeyPublic = 1;
|
||
|
optional bytes identityKeyPrivate = 2;
|
||
|
optional string number = 3;
|
||
|
optional string provisioningCode = 4;
|
||
|
}
|