Skip to content

Commit

Permalink
fix: builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoparallel committed Dec 13, 2024
1 parent 14b09d8 commit 743c4f3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 19 deletions.
4 changes: 2 additions & 2 deletions builds/target_1024b/plaintext_authentication_1024b.circom
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pragma circom 2.1.9;

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

component main { public [step_in] } = ChaCha20_NIVC(1024);
component main { public [step_in] } = PlaintextAuthentication(1024);
5 changes: 0 additions & 5 deletions builds/target_512b/json_extract_value_512b.circom

This file was deleted.

5 changes: 5 additions & 0 deletions builds/target_512b/json_extraction_512b.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.9;

include "../../circuits/json/extraction.circom";

component main { public [step_in] } = JSONExtraction(512, 10);
5 changes: 0 additions & 5 deletions builds/target_512b/json_mask_array_index_512b.circom

This file was deleted.

5 changes: 0 additions & 5 deletions builds/target_512b/json_mask_object_512b.circom

This file was deleted.

4 changes: 2 additions & 2 deletions builds/target_512b/plaintext_authentication_512b.circom
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pragma circom 2.1.9;

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

component main { public [step_in] } = ChaCha20_NIVC(512);
component main { public [step_in] } = PlaintextAuthentication(512);

0 comments on commit 743c4f3

Please sign in to comment.