Skip to content

Commit

Permalink
fix: add 512b circuits back (#84)
Browse files Browse the repository at this point in the history
* add 512B back

* update package version
  • Loading branch information
lonerapier authored Dec 12, 2024
1 parent 34c23ef commit 26fc847
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 1 deletion.
5 changes: 5 additions & 0 deletions builds/target_512b/http_verification_512b.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.9;

include "../../circuits/http/verification.circom";

component main { public [step_in] } = HTTPVerification(512, 10);
5 changes: 5 additions & 0 deletions builds/target_512b/json_extract_value_512b.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.9;

include "../../circuits/json/nivc/extractor.circom";

component main { public [step_in] } = MaskExtractFinal(512, 50);
5 changes: 5 additions & 0 deletions builds/target_512b/json_mask_array_index_512b.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.9;

include "../../circuits/json/nivc/masker.circom";

component main { public [step_in] } = JsonMaskArrayIndexNIVC(512, 10);
5 changes: 5 additions & 0 deletions builds/target_512b/json_mask_object_512b.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.9;

include "../../circuits/json/nivc/masker.circom";

component main { public [step_in] } = JsonMaskObjectNIVC(512, 10, 10);
5 changes: 5 additions & 0 deletions builds/target_512b/plaintext_authentication_512b.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.9;

include "../../circuits/chacha20/nivc/chacha20_nivc.circom";

component main { public [step_in] } = ChaCha20_NIVC(512);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "web-prover-circuits",
"description": "ZK Circuits for WebProofs",
"version": "0.6.0",
"version": "0.6.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down

0 comments on commit 26fc847

Please sign in to comment.