You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
284 B

  1. include "../../circuits/sha256/sha256_2.circom";
  2. template Main() {
  3. signal private input a;
  4. signal private input b;
  5. signal output out;
  6. component sha256_2 = Sha256_2();
  7. sha256_2.a <== a;
  8. sha256_2.b <== a;
  9. out <== sha256_2.out;
  10. }
  11. component main = Main();