Skip to content
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/clean kzg #152

Merged
merged 5 commits into from
Feb 15, 2022
Merged

Feat/clean kzg #152

merged 5 commits into from
Feb 15, 2022

Conversation

ThomasPiellard
Copy link
Contributor

API breaking changes:

  • Open(p polynomial.Polynomial, point *fr.Element, domain *fft.Domain, srs *SRS) -> Open(p []fr.Element, point fr.Element, srs *SRS)
  • Verify(commitment *Digest, proof *OpeningProof, srs *SRS) -> Verify(commitment *Digest, proof *OpeningProof, point fr.Element, srs *SRS)
  • BatchOpenSinglePoint(polynomials []polynomial.Polynomial, digests []Digest, point *fr.Element, hf hash.Hash, domain *fft.Domain, srs *SRS) -> BatchOpenSinglePoint(polynomials [][]fr.Element, digests []Digest, point fr.Element, hf hash.Hash, srs *SRS)
  • BatchVerifyMultiPoints(digests []Digest, proofs []OpeningProof, srs *SRS) -> BatchVerifyMultiPoints(digests []Digest, proofs []OpeningProof, points []fr.Element, srs *SRS)
  • FoldProof(digests []Digest, batchOpeningProof *BatchOpeningProof, hf hash.Hash) -> FoldProof(digests []Digest, batchOpeningProof *BatchOpeningProof, point fr.Element, hf hash.Hash)

Fixes #142
Fixes #120

@gbotrel gbotrel merged commit 41bfe5e into develop Feb 15, 2022
@gbotrel gbotrel deleted the feat/clean_kzg branch February 15, 2022 17:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants