Closed pool2win closed 2 months ago
Hi @pool2win.
Requiring BFT agreement is a drawback for two reasons:
f
by setting the threshold t = f+1
.CertEq
protocol.In such cases, using simple protocols like Raft under partial synchrony assumption and HotStuff under an asynchronous assumption will suffice to meet the Pedersen's DKG requirement.
As pointed out in the previous comment, the "consensus" part of the BIP is just a handful of LoC. What's the complexity of a HotStuff implemenation? I assume it's in the order of magnitude of thousands of LoC, not counting the dependencies.
Sure, if your system already has a small, permissioned setting, and you anyway have some majority assumption, then BFT sounds natural. But even then, you need to compose the DKG with the BFT and reason about the security of the resulting system. Probably not trivial.
Thanks for your responses.
I agree composing BFT consensus with a DKG protocol will be complicated and probably not the right direction.
I am intrigued by the comments on https://github.com/ZcashFoundation/frost/issues/577 about echo broadcast not being sufficient as well. I have left a comment there to continue the discussion around using echo broadcast.
Let me close this issue then. Thanks for your feedback in #47, I'll take a look at this soon.
I want to understand why the consensus / BFT broadcast requirement is considered such a big drawback - especially for small, permissioned, known membership setups?
We can use multiple bft consensus protocols that work well in permissioned and known membership setups. For example, if we know that we have these seven participants and that the we know that the BFT consensus is limited to between these seven participants. In such cases, using simple protocols like Raft under partial synchrony assumption and HotStuff under an asynchronous assumption will suffice to meet the Pedersen's DKG requirement.
With known parties of limited size is it not sufficient to run Pedersen's DKG instantiation using known and well implemented consensus protocols? Further, we also have BFT consensus protocols that scale well to group sizes of up to 10 or so and are not dependent on a co-ordinator.