initial implemetation of Sumcheck protocol (#7)

This commit is contained in:
zhenfei
2022-05-12 17:29:36 -04:00
committed by GitHub
parent 9d4d178455
commit fbd400941e
18 changed files with 1614 additions and 1 deletions

8
pcs/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "pcs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
pcs/readme.md Normal file
View File

@@ -0,0 +1,3 @@
KZG based multilinear polynomial commitment
-----

8
pcs/src/lib.rs Normal file
View File

@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}