1syntax = "proto3"; 2 3package pandora; 4 5option java_outer_classname = "OobProto"; 6 7 8service OOB { 9 // Share OOB data 10 rpc ShareOobData(OobDataRequest) returns (OobDataResponse); 11} 12 13// Local Device OOB data. 14message OobDataRequest { 15 // OOB data Pairing Hash and Randomizer - 32 bytes. 16 bytes oob = 1; 17} 18 19// Remote Device OOB data. 20message OobDataResponse { 21 // OOB data Pairing Hash and Randomizer - 32 bytes. 22 bytes oob = 1; 23} 24 25