aboutsummaryrefslogtreecommitdiff
path: root/libcmix-protobuf
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-11-12 13:48:30 +0100
committerDennis Brentjes <d.brentjes@gmail.com>2016-11-12 13:48:30 +0100
commitf93d52bbd0053574fb35d72b85c4b299dc1f3ee5 (patch)
tree4a2120a162ce9161d70074fd9ffa3ed21d80a40e /libcmix-protobuf
parent8ff9babe2da4a2efc8529e800a6093fbd0327286 (diff)
downloadcmix-f93d52bbd0053574fb35d72b85c4b299dc1f3ee5.tar.gz
cmix-f93d52bbd0053574fb35d72b85c4b299dc1f3ee5.tar.bz2
cmix-f93d52bbd0053574fb35d72b85c4b299dc1f3ee5.zip
Fixes decryption share calculation, adds lots of debugging statements.
Diffstat (limited to 'libcmix-protobuf')
-rw-r--r--libcmix-protobuf/cmix.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/libcmix-protobuf/cmix.proto b/libcmix-protobuf/cmix.proto
index ce1f2c2..8bb1d42 100644
--- a/libcmix-protobuf/cmix.proto
+++ b/libcmix-protobuf/cmix.proto
@@ -48,6 +48,15 @@ message PrePost {
repeated bytes m_EPiRS = 2;
}
+message RealPre {
+ repeated bytes h = 1;
+ repeated bytes m = 2;
+}
+
+message RealMix {
+ repeated bytes m = 2;
+}
+
message CMixMessage {
oneof contents {
Initialization initialization = 1;
@@ -61,5 +70,7 @@ message CMixMessage {
PrePre prepre = 9;
PreMix premix = 10;
PrePost prepost = 11;
+ RealPre realpre = 12;
+ RealMix realmix = 13;
}
}