-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2538 from o1-labs/dw/poly-commitment-more-docs-an…
…d-change-description Poly-commitment: add README and documentation
- Loading branch information
Showing
5 changed files
with
59 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# poly-commitment: implementations of multiple PCS | ||
|
||
This library offers implementations of different Polynomial Commitment Scheme | ||
(PCS) that can be used in Polynomial Interactive Oracle Proof (PIOP) like PlonK. | ||
|
||
Currently, the following polynomial commitment schemes are implemented: | ||
- [KZG10](./src/kzg.rs) | ||
- [Inner Product Argument](./src/commitment.rs) | ||
|
||
The implementations are made initially to be compatible with Kimchi (a Plonk-ish | ||
variant with 15 wires and some custom gates) and to be used in the Mina | ||
protocol. For instance, submodules are created to convert into OCaml to be used | ||
in the Mina protocol codebase. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters