mirror of
https://github.com/Sneed-Group/pypush-plus-plus
synced 2025-01-09 17:33:47 +00:00
18 lines
339 B
Protocol Buffer
18 lines
339 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
// message InnerMessage {
|
||
|
// required bytes message = 1;
|
||
|
// uint32 counter = 2;
|
||
|
// bytes ktGossipData = 3;
|
||
|
// bytes debugInfo = 99;
|
||
|
// }
|
||
|
|
||
|
message KeyTransparencyLoggableData {
|
||
|
bytes ngmPublicIdentity = 1;
|
||
|
uint32 ngmVersion = 2;
|
||
|
uint32 ktVersion = 3;
|
||
|
}
|
||
|
|
||
|
message NgmPublicIdentity {
|
||
|
bytes publicKey = 1;
|
||
|
}
|