Add secio protobufs

This commit is contained in:
Alex Stokes
2019-08-16 14:08:54 -07:00
parent 23f53ef954
commit fd08bcf624
4 changed files with 228 additions and 1 deletions

View File

@ -0,0 +1,16 @@
syntax = "proto2";
package spipe.pb;
message Propose {
optional bytes rand = 1;
optional bytes public_key = 2;
optional string exchanges = 3;
optional string ciphers = 4;
optional string hashes = 5;
}
message Exchange {
optional bytes ephemeral_public_key = 1;
optional bytes signature = 2;
}