9 lines
127 B
Protocol Buffer
9 lines
127 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Proto;
|
|
|
|
message NodePacket {
|
|
bytes challenge = 1;
|
|
bytes signature = 2;
|
|
bytes publicKey = 3;
|
|
} |