Keccak circuit implemented and it works

Keccak circuit initial version implemented and it works. At this current
commit it only accepts inputs of fixed length nBits, it will be iterated
in future commits.

Currently it needs 150848 constraints.
This commit is contained in:
2021-11-25 18:33:18 +01:00
parent 48b66e17f9
commit 9522a57cdd
5 changed files with 168 additions and 23 deletions

View File

@@ -0,0 +1,5 @@
pragma circom 2.0.0;
include "../../circuits/keccak256.circom";
component main = Keccak(32*8);