summaryrefslogtreecommitdiffstats
path: root/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.proto
blob: 2003ec725fd5a034cabedae322804afbd60ef539 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// From https://github.com/signalapp/libsignal-protocol-c/blob/master/protobuf/FingerprintProtocol.proto
syntax = "proto2";
package textsecure;

message LogicalFingerprint {
  optional bytes content = 1;
  optional bytes identifier = 2; // Version 0
}

message CombinedFingerprints {
  optional uint32             version           = 1;
  optional LogicalFingerprint localFingerprint  = 2;
  optional LogicalFingerprint remoteFingerprint = 3;
}