Reimplementation of groth16 using pairing library.

This commit is contained in:
Sean Bowe
2017-08-07 13:36:52 -06:00
parent bf03be0b9d
commit 3148662234
9 changed files with 2240 additions and 7 deletions

View File

@@ -9,11 +9,17 @@ repository = "https://github.com/ebfull/bellman"
version = "0.0.3"
[dependencies]
#rand = "0.3.*"
#byteorder = "1.*"
#serde = "1.0"
#crossbeam = "0.2"
#num_cpus = "1.0"
rand = "0.3"
bit-vec = "0.4.4"
futures = "0.1"
futures-cpupool = "0.1"
num_cpus = "1.6"
crossbeam = "0.3"
[dev-dependencies]
#bincode = "0.8.0"
[dependencies.pairing]
version = "0.11"
features = ["unstable-wnaf"]
[features]
default = ["u128-support"]
u128-support = ["pairing/u128-support"]