mirror of
https://github.com/mii443/RustySecrets.git
synced 2025-08-23 00:35:38 +00:00
* Removing Coverall support until fixed. (See #12) * Changing Cargo license. * New wrapping of share data to support signatures.
9 lines
112 B
Protocol Buffer
9 lines
112 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message ShareData {
|
|
bytes shamirData = 1;
|
|
bytes signature = 2;
|
|
bytes proof = 3;
|
|
}
|
|
|