mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
543 B
Protocol Buffer
20 lines
543 B
Protocol Buffer
// iOS - since we use a modern proto-compiler, we must specify
|
|
// the legacy proto format.
|
|
syntax = "proto2";
|
|
|
|
package textsecure;
|
|
|
|
option java_package = "org.whispersystems.libsignal.fingerprint";
|
|
option java_outer_classname = "FingerprintProtos";
|
|
|
|
message LogicalFingerprint {
|
|
optional bytes identityData = 1;
|
|
// optional bytes identifier = 2;
|
|
}
|
|
|
|
message LogicalFingerprints {
|
|
optional uint32 version = 1;
|
|
optional LogicalFingerprint localFingerprint = 2;
|
|
optional LogicalFingerprint remoteFingerprint = 3;
|
|
}
|