├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── get-libsnark └── src ├── gadget.hpp ├── main.cpp └── snark.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | .tags 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning-li/zkSNARK-toy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning-li/zkSNARK-toy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning-li/zkSNARK-toy/HEAD/README.md -------------------------------------------------------------------------------- /get-libsnark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning-li/zkSNARK-toy/HEAD/get-libsnark -------------------------------------------------------------------------------- /src/gadget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning-li/zkSNARK-toy/HEAD/src/gadget.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning-li/zkSNARK-toy/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/snark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning-li/zkSNARK-toy/HEAD/src/snark.hpp --------------------------------------------------------------------------------