feat: implement BLE provisioning protocol, rudimentary UI
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
syntax = "proto3";
|
||||
|
||||
import "sec0.proto";
|
||||
|
||||
enum SecSchemeVersion {
|
||||
SecScheme0 = 0;
|
||||
SecScheme1 = 1;
|
||||
SecScheme2 = 2;
|
||||
}
|
||||
|
||||
message SessionData {
|
||||
SecSchemeVersion sec_ver = 2;
|
||||
oneof proto {
|
||||
Sec0Payload sec0 = 10;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user