mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
15 lines
396 B
Protocol Buffer
15 lines
396 B
Protocol Buffer
/**
|
|
* Copyright (C) 2014-2016 Open Whisper Systems
|
|
*
|
|
* Licensed according to the LICENSE file in this repository.
|
|
*/
|
|
package signalservice;
|
|
|
|
option java_package = "org.thoughtcrime.securesms.devicelist";
|
|
option java_outer_classname = "DeviceNameProtos";
|
|
|
|
message DeviceName {
|
|
optional bytes ephemeralPublic = 1;
|
|
optional bytes syntheticIv = 2;
|
|
optional bytes ciphertext = 3;
|
|
}
|