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
The merged KeyGen + KeyRefresh protocol requires us to write quite a bit of boilerplate where all we do is just merge two types into one or separate them to pass on to lower levels. Can it be done generically?
Seems like we can't do it via a trait, the blanket impl will conflict with the sequential wrapper. Also for the parallel merge we need to assert that round numbers, destinations etc are the same between the two rounds. So a macro would probably be better.
The text was updated successfully, but these errors were encountered:
The merged KeyGen + KeyRefresh protocol requires us to write quite a bit of boilerplate where all we do is just merge two types into one or separate them to pass on to lower levels. Can it be done generically?
Seems like we can't do it via a trait, the blanket impl will conflict with the sequential wrapper. Also for the parallel merge we need to assert that round numbers, destinations etc are the same between the two rounds. So a macro would probably be better.
The text was updated successfully, but these errors were encountered: