You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added p2p channel among MPC nodes, allowing authenticated encryption between arbitrary two MPC nodes
hi @nann-cheng the term p2p here makes a bit confused. IMO that term is implied at the network layer where nodes exchanges their messages with each other via truly p2p channels (for example using pkg libp2p). Meanwhile, the current architecture is designed in a way that nodes exchange messages via the centralized queue.
You implementation is to enhance the current authentication method (ed25519 key pair) with ECDH protocol? Correct me if I'm wrong.
Within the TSS MPC execution, there are two types of messages exchanged among MPC nodes: broadcasting message which can be public known by observer, and point-to-point messages that should be kept secret among the two parties. Currently, the scheme implement only the broadcasting message but not yet the point-to-point message type. I added that, yes it works by introducing ECDH protocol to negotiate pair-wise symmetric keys, then these keys are used to perform authenticated encryption.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added p2p channel among MPC nodes, allowing authenticated encryption between arbitrary two MPC nodes