-
Notifications
You must be signed in to change notification settings - Fork 108
Add BLS Signature Verification for Multiple Payloads #575
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
Add BLS Signature Verification for Multiple Payloads #575
Conversation
|
Current dependencies on/for this PR:
This comment was auto-generated by Graphite. |
| // This is the only supported BLS signing algorithm in the flowCrypto package. | ||
| // BLS is used such that we can aggregate signatures into one signature. | ||
| const SigningAlgorithm = flowCrypto.BLSBLS12381 | ||
| const signingAlgorithm = flowCrypto.BLSBLS12381 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This signingAlgorithm const and hashingAlgorithm global variable are implementation details of how this package wraps the flow BLS scheme implementation underneath.
We don't want this package to expose them externally, so it's best to make them private.

No description provided.