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.
 
 

17 lines
310 B

pragma circom 2.0.0;
include "../../circuits/sha256/sha256_2.circom";
template Main() {
signal input a; //private
signal input b; //private
signal output out;
component sha256_2 = Sha256_2();
sha256_2.a <== a;
sha256_2.b <== b;
out <== sha256_2.out;
}
component main = Main();