mirror of
https://github.com/arnaucube/go-circom-prover-verifier.git
synced 2026-02-07 03:16:46 +01:00
Add testdata big&small circuits, update proof parsers, add compile-circuits.sh
This commit is contained in:
9
testdata/small/circuit.circom
vendored
Normal file
9
testdata/small/circuit.circom
vendored
Normal 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
1
testdata/small/input.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{ "a":3, "b": 11}
|
||||
Reference in New Issue
Block a user