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.
19 lines
559 B
Protocol Buffer
19 lines
559 B
Protocol Buffer
9 years ago
|
package textsecure;
|
||
|
|
||
9 years ago
|
option java_package = "org.whispersystems.libsignal.fingerprint";
|
||
9 years ago
|
option java_outer_classname = "FingerprintProtos";
|
||
|
|
||
|
import "objectivec-descriptor.proto";
|
||
|
option (google.protobuf.objectivec_file_options).class_prefix = "OWSFingerprintProtos";
|
||
|
|
||
9 years ago
|
message LogicalFingerprint {
|
||
|
optional bytes identityData = 1;
|
||
|
// optional bytes identifier = 2;
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
message LogicalFingerprints {
|
||
|
optional uint32 version = 1;
|
||
|
optional LogicalFingerprint localFingerprint = 2;
|
||
|
optional LogicalFingerprint remoteFingerprint = 3;
|
||
9 years ago
|
}
|