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.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			656 B
		
	
	
	
		
			Protocol Buffer
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			656 B
		
	
	
	
		
			Protocol Buffer
		
	
// iOS - since we use a modern proto-compiler, we must specify
 | 
						|
// the legacy proto format.
 | 
						|
syntax = "proto2";
 | 
						|
 | 
						|
// iOS - package name determines class prefix
 | 
						|
package FingerprintProtos;
 | 
						|
 | 
						|
option java_package = "org.whispersystems.libsignal.fingerprint";
 | 
						|
option java_outer_classname = "FingerprintProtos";
 | 
						|
 | 
						|
message LogicalFingerprint {
 | 
						|
  // @required
 | 
						|
  optional bytes identityData = 1;
 | 
						|
//  optional bytes identifier = 2;
 | 
						|
}
 | 
						|
 | 
						|
message LogicalFingerprints {
 | 
						|
  // @required
 | 
						|
  optional uint32             version           = 1;
 | 
						|
  // @required
 | 
						|
  optional LogicalFingerprint localFingerprint  = 2;
 | 
						|
  // @required
 | 
						|
  optional LogicalFingerprint remoteFingerprint = 3;
 | 
						|
}
 |