Files
RustySecrets/protobuf/ShareData.proto
Frederic Jacobs aeb8e4c21f New share format. (#13)
* Removing Coverall support until fixed. (See #12)

* Changing Cargo license.

* New wrapping of share data to support signatures.
2016-11-18 12:34:06 +01:00

9 lines
112 B
Protocol Buffer

syntax = "proto3";
message ShareData {
bytes shamirData = 1;
bytes signature = 2;
bytes proof = 3;
}