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
Currently we handle validation of min_signers and max_signers in generate_secret_polynomial. When calling keygen_with_dealer we accept these inputs but perform no validation on them until generate_secret_polynomial is called. generate_secret_polynomial is public and so if it's directly accessible we probably would want to validate the inputs in that function however. We should consider how best to handle validation in this instance as we would reduce computation effort by performing those validations up front.
The text was updated successfully, but these errors were encountered:
Currently we handle validation of
min_signers
andmax_signers
ingenerate_secret_polynomial
. When callingkeygen_with_dealer
we accept these inputs but perform no validation on them untilgenerate_secret_polynomial
is called.generate_secret_polynomial
is public and so if it's directly accessible we probably would want to validate the inputs in that function however. We should consider how best to handle validation in this instance as we would reduce computation effort by performing those validations up front.The text was updated successfully, but these errors were encountered: