TM-SGNL-iOS/SignalServiceKit/protobuf/SignalIOS.proto
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

20 lines
439 B
Protocol Buffer

//
// Copyright 2014 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
// iOS - since we use a modern proto-compiler, we must specify
// the legacy proto format.
syntax = "proto2";
// iOS - package name determines class prefix
package IOSProtos;
message DeviceName {
// @required
optional bytes ephemeralPublic = 1;
// @required
optional bytes syntheticIv = 2;
// @required
optional bytes ciphertext = 3;
}