Refactoring to allow for a more flexible API.

This commit is contained in:
Frederic Jacobs
2016-12-02 14:56:12 +01:00
committed by GitHub
parent aeb8e4c21f
commit f5ab309dd6
60 changed files with 6460 additions and 486 deletions

View File

@ -1,8 +1,7 @@
syntax = "proto3";
message ShareData {
bytes shamirData = 1;
bytes signature = 2;
bytes proof = 3;
bytes shamir_data = 1;
repeated bytes signature = 2;
bytes proof = 3;
}