├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── depends └── CMakeLists.txt ├── src ├── CMakeLists.txt ├── ZoKrates │ ├── wraplibsnark.cpp │ └── wraplibsnark.hpp └── main.cpp └── zksnark_element ├── proof.json ├── r1cs.json └── vk.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | build -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /depends/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(libsnark) -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ZoKrates/wraplibsnark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/src/ZoKrates/wraplibsnark.cpp -------------------------------------------------------------------------------- /src/ZoKrates/wraplibsnark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/src/ZoKrates/wraplibsnark.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/src/main.cpp -------------------------------------------------------------------------------- /zksnark_element/proof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/zksnark_element/proof.json -------------------------------------------------------------------------------- /zksnark_element/r1cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/zksnark_element/r1cs.json -------------------------------------------------------------------------------- /zksnark_element/vk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryWhiteHat/libsnark-tutorial/HEAD/zksnark_element/vk.json --------------------------------------------------------------------------------