-
Notifications
You must be signed in to change notification settings - Fork 368
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
Feat/plonk generic #250
Feat/plonk generic #250
Conversation
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.
couple cosmetic changes / dead code;
also, would make sense in a separate PR to think API wise how a end-user selects between
"PLONK[KZG]" "PLONKFRI" + custom gates when they come through.
Maybe just one expose "plonk" and some options to pick the correct instantiation
// | ||
// it's underlying implementation is curve specific (see gnark/internal/backend) | ||
type Proof interface { | ||
// io.WriterTo |
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.
serialization is not implemented for proof / pk / vk
The PLONK scheme is now instantiated with FRI. The protocol in itself is adapted for non homomorphic polynomial commitment scheme.
It's just the unrolled protocol, with batching of commitments, so the scheme is a naive sequence of commitments + openings, along with the algebraic relations checks.