Noise: update pb

This commit is contained in:
mhchia
2020-02-26 15:04:43 +08:00
parent f8240bd2cb
commit 728d9e5c9c
3 changed files with 17 additions and 16 deletions

View File

@ -1,5 +1,8 @@
syntax = "proto3";
package pb;
message NoiseHandshakePayload {
optional bytes identity_key = 1;
optional bytes identity_sig = 2;
optional bytes data = 3;
bytes identity_key = 1;
bytes identity_sig = 2;
bytes data = 3;
}