aboutsummaryrefslogtreecommitdiff
path: root/libcmix-protobuf/cmix.proto
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-10-30 13:38:49 +0100
committerDennis Brentjes <d.brentjes@gmail.com>2016-10-30 16:37:03 +0100
commita3e62d3bc6e7f75949726f9a8dafe03e757e869b (patch)
tree49e59076a7ffd7ea757f650a64aaba2b16be1886 /libcmix-protobuf/cmix.proto
parent158bf81343054982800d44d507e8e50f2eeb6dd4 (diff)
downloadcmix-a3e62d3bc6e7f75949726f9a8dafe03e757e869b.tar.gz
cmix-a3e62d3bc6e7f75949726f9a8dafe03e757e869b.tar.bz2
cmix-a3e62d3bc6e7f75949726f9a8dafe03e757e869b.zip
Added the Preprocessing step for the Precomputation of CMix.
Diffstat (limited to 'libcmix-protobuf/cmix.proto')
-rw-r--r--libcmix-protobuf/cmix.proto14
1 files changed, 14 insertions, 0 deletions
diff --git a/libcmix-protobuf/cmix.proto b/libcmix-protobuf/cmix.proto
index 6403cee..2fe2d83 100644
--- a/libcmix-protobuf/cmix.proto
+++ b/libcmix-protobuf/cmix.proto
@@ -29,6 +29,19 @@ message NodeReady {
}
+message PrePre {
+ repeated bytes r_ER = 1;
+ repeated bytes m_ER = 2;
+}
+
+message PreMix {
+ repeated bytes EPiRS = 1;
+}
+
+message PrePost {
+ repeated bytes PiRS = 1;
+}
+
message CMixMessage {
oneof contents {
Initialization initialization = 1;
@@ -38,5 +51,6 @@ message CMixMessage {
Bye bye = 5;
KeyExchange keyexchange = 6;
NodeReady nodeready = 7;
+ PrePre prepre = 8;
}
}