Add testdata big&small circuits, update proof parsers, add compile-circuits.sh

This commit is contained in:
arnaucube
2020-04-06 13:50:02 +02:00
parent c03cb1af00
commit 7aa69a5b2c
11 changed files with 119 additions and 234 deletions

9
testdata/small/circuit.circom vendored Normal file
View File

@@ -0,0 +1,9 @@
template Multiplier() {
signal private input a;
signal private input b;
signal output c;
c <== a*b;
}
component main = Multiplier();

1
testdata/small/input.json vendored Normal file
View File

@@ -0,0 +1 @@
{ "a":3, "b": 11}