mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
14 lines
444 B
Protocol Buffer
14 lines
444 B
Protocol Buffer
// 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;
|
|
} |