mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-07 19:26:43 +01:00
Readme, License Fixes and another test added
This commit is contained in:
25
circuits/sha256/sigma.circom
Normal file
25
circuits/sha256/sigma.circom
Normal file
@@ -0,0 +1,25 @@
|
||||
include "gates.jaz";
|
||||
include "rotate.jaz";
|
||||
|
||||
template Sigma(ra, rb, rc) {
|
||||
signal input in;
|
||||
signal output out;
|
||||
|
||||
component xor3 = Xor3(32);
|
||||
|
||||
component rota = RotR(32, ra);
|
||||
component rotb = RotR(32, rb);
|
||||
component rotc = RotR(32, rc);
|
||||
|
||||
for (var k=0; k<32; k++) {
|
||||
rota.in[k] <== in[k];
|
||||
rotb.in[k] <== in[k];
|
||||
rotc.in[k] <== in[k];
|
||||
|
||||
xor3.a[k] <== rota.out[k];
|
||||
xor3.b[k] <== rotb.out[k];
|
||||
xor3.c[k] <== rotc.out[k];
|
||||
|
||||
out[k] <== xor3.out[k];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user