-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change participant identifiers in Trusted Dealer variant #77
Comments
I assume that |
Regarding the hash function, should I go with This also brings up the decision of how long the identifiers should be. To me, 64 (or perhaps 32) bit identifiers seem like a reasonable choice between the length of the identifier and the chance of a collision. Also, the participants' identifiers are used in the evaluation of the polynomial in Shamir's Secret Sharing, where they are cast to Line 290 in f7c1535
Currently, we are using |
I think we can go with u64's with the handy conversion to jubjub::Scalar, this implies that the |
We want a more robust but deterministic mechanism for generating participant identifiers for FROST. For the trusted dealer variant, we can generate participant identifiers as follows:
Where
s
is the secret chosen by the dealer during Key Generation.The text was updated successfully, but these errors were encountered: