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.
|
|
include "../../circuits/sha256/sha256_2.circom";
template Main() { signal private input a; signal private input b; signal output out;
component sha256_2 = Sha256_2();
sha256_2.a <== a; sha256_2.b <== b; out <== sha256_2.out; }
component main = Main();
|