Skip to content

Commit

Permalink
sha256/main.circom revised
Browse files Browse the repository at this point in the history
  • Loading branch information
alrubio committed Apr 20, 2022
1 parent 8750131 commit 4354d0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions circuits/sha256/main.circom
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
*/
pragma circom 2.0.0;

include "sha256_2.jaz";
include "sha256_2.circom";

template Main() {
signal private input a;
signal private input b;
signal input a;
signal input b;
signal output out;

component sha256_2 = SHA256_2();
component sha256_2 = Sha256_2();

sha256_2.a <== a;
sha256_2.b <== a;
Expand Down

0 comments on commit 4354d0a

Please sign in to comment.