mirror of
https://github.com/SwingbyProtocol/tss-lib.git
synced 2026-01-09 13:57:58 -05:00
32 lines
858 B
Protocol Buffer
32 lines
858 B
Protocol Buffer
// Copyright © 2019 Binance
|
|
//
|
|
// This file is part of Binance. The full Binance copyright notice, including
|
|
// terms governing use, modification, and redistribution, is contained in the
|
|
// file LICENSE at the root of the source code distribution tree.
|
|
|
|
syntax = "proto3";
|
|
package binance.tsslib.eddsa.keygen;
|
|
option go_package = "eddsa/keygen";
|
|
|
|
/*
|
|
* Represents a BROADCAST message sent during Round 1 of the EDDSA TSS keygen protocol.
|
|
*/
|
|
message KGRound1Message {
|
|
bytes commitment = 1;
|
|
}
|
|
|
|
/*
|
|
* Represents a P2P message sent to each party during Round 2 of the EDDSA TSS keygen protocol.
|
|
*/
|
|
message KGRound2Message1 {
|
|
bytes share = 1;
|
|
}
|
|
|
|
/*
|
|
* Represents a BROADCAST message sent to each party during Round 2 of the EDDSA TSS keygen protocol.
|
|
*/
|
|
message KGRound2Message2 {
|
|
repeated bytes de_commitment = 1;
|
|
repeated bytes proof = 2;
|
|
}
|