diff options
Diffstat (limited to 'libcmix-protobuf/cmix.proto')
| -rw-r--r-- | libcmix-protobuf/cmix.proto | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/libcmix-protobuf/cmix.proto b/libcmix-protobuf/cmix.proto index 1074613..b57c86f 100644 --- a/libcmix-protobuf/cmix.proto +++ b/libcmix-protobuf/cmix.proto @@ -4,6 +4,10 @@ message Initialization { required bytes public_share = 1; } +message SecretKey { + required bytes secret_key = 1; +} + message ImANode { } @@ -23,9 +27,10 @@ message KeyExchange { message CMixMessage { oneof contents { Initialization initialization = 1; - ImANode imanode = 2; - ImAClient imaclient = 3; - Bye bye = 4; - KeyExchange keyexchange = 5; + SecretKey secretkey = 2; + ImANode imanode = 3; + ImAClient imaclient = 4; + Bye bye = 5; + KeyExchange keyexchange = 6; } } |
