├── .gitignore ├── .gitmodules ├── README.md ├── run_groth16.sh ├── run_halo2.sh └── run_starky.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sladuca/sha256-prover-comparison/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sladuca/sha256-prover-comparison/HEAD/README.md -------------------------------------------------------------------------------- /run_groth16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sladuca/sha256-prover-comparison/HEAD/run_groth16.sh -------------------------------------------------------------------------------- /run_halo2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sladuca/sha256-prover-comparison/HEAD/run_halo2.sh -------------------------------------------------------------------------------- /run_starky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sladuca/sha256-prover-comparison/HEAD/run_starky.sh --------------------------------------------------------------------------------