mirror of
https://github.com/mii443/RustySecrets.git
synced 2025-08-22 16:25:32 +00:00
10 lines
134 B
Protocol Buffer
10 lines
134 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package wrapped;
|
|
|
|
message ShareProto {
|
|
bytes shamir_data = 1;
|
|
repeated bytes signature = 2;
|
|
bytes proof = 3;
|
|
}
|