2018-12-19 08:09:22 -08:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2014-2016 Open Whisper Systems
|
|
|
|
*
|
|
|
|
* Licensed according to the LICENSE file in this repository.
|
|
|
|
*/
|
2019-11-04 09:03:18 -05:00
|
|
|
|
|
|
|
syntax = "proto2";
|
|
|
|
|
2018-12-19 08:09:22 -08:00
|
|
|
package signalservice;
|
|
|
|
|
2019-11-04 09:03:18 -05:00
|
|
|
option java_package = "org.thoughtcrime.securesms.devicelist";
|
2018-12-19 08:09:22 -08:00
|
|
|
option java_outer_classname = "DeviceNameProtos";
|
|
|
|
|
|
|
|
message DeviceName {
|
|
|
|
optional bytes ephemeralPublic = 1;
|
|
|
|
optional bytes syntheticIv = 2;
|
|
|
|
optional bytes ciphertext = 3;
|
|
|
|
}
|