-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 9 additions, 0 deletions.gitignore
- Cargo.toml 31 additions, 0 deletionsCargo.toml
- LICENSE-APACHE 201 additions, 0 deletionsLICENSE-APACHE
- LICENSE-MIT 19 additions, 0 deletionsLICENSE-MIT
- README.md 72 additions, 0 deletionsREADME.md
- src/lib.rs 138 additions, 0 deletionssrc/lib.rs
- src/multi_pc/mod.rs 505 additions, 0 deletionssrc/multi_pc/mod.rs
- src/multi_pc/mpc_from_spc.rs 0 additions, 0 deletionssrc/multi_pc/mpc_from_spc.rs
- src/single_pc/kzg10.rs 0 additions, 0 deletionssrc/single_pc/kzg10.rs
- src/single_pc/mod.rs 196 additions, 0 deletionssrc/single_pc/mod.rs
.gitignore
0 → 100644
Cargo.toml
0 → 100644
[package] | |||
name = "poly-commit" | |||
version = "0.1.0" | |||
authors = [ | |||
"Alessandro Chiesa <alexch@berkeley.edu>", | |||
"Mary Maller <mary.maller.15@ucl.ac.uk>", | |||
"Yuncong Hu <huyuncongh@gmail.com>", | |||
"Pratyush Mishra <pratyush@berkeley.edu>", | |||
"Noah Vesely <noah.vesely.18@ucl.ac.uk>", | |||
"Nicholas Ward <npward@berkeley.edu>", | |||
] | |||
description = "A library for constructing polynomial commitment schemes for use in zkSNARKs" | |||
homepage = "https://libzexe.org" | |||
repository = "https://github.com/scipr/poly-commit" | |||
documentation = "https://docs.rs/poly-commit/" | |||
keywords = ["cryptography", "polynomial commitments", "elliptic curves", "pairing"] | |||
categories = ["cryptography"] | |||
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] | |||
license = "MIT/Apache-2.0" | |||
edition = "2018" | |||
[dependencies] | |||
algebra = { git = "https://github.com/scipr-lab/zexe/", features = [ "parallel" ] } | |||
ff-fft = { git = "https://github.com/scipr-lab/zexe/" } | |||
bench-utils = { git = "https://github.com/scipr-lab/zexe/" } | |||
rand = { version = "0.4" } | |||
rayon = { version = "1" } | |||
derivative = { version = "1" } | |||
[features] | |||
timer = [ "bench-utils/timer" ] |
LICENSE-APACHE
0 → 100644
LICENSE-MIT
0 → 100644
README.md
0 → 100644
src/lib.rs
0 → 100644
src/multi_pc/mod.rs
0 → 100644
src/multi_pc/mpc_from_spc.rs
0 → 100644
This diff is collapsed.
src/single_pc/kzg10.rs
0 → 100644
This diff is collapsed.
src/single_pc/mod.rs
0 → 100644
Please register or sign in to comment