From 19856bd9b609327b697db2693bed4391b5cd0033 Mon Sep 17 00:00:00 2001 From: Pratyush Mishra Date: Wed, 23 Oct 2019 21:45:56 -0700 Subject: [PATCH] Add Groth16 to Readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 9e9823f..088d15b 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,14 @@ This repository contains several Rust crates that implement the different buildi * [`r1cs-core`](r1cs-core): Rust crate that defines core interfaces for a Rank-1 Constraint System (R1CS) * [`r1cs-std`](r1cs-std): Rust crate that provides various gadgets used to construct R1CS * [`gm17`](gm17): Rust crate that implements the zkSNARK of [Groth and Maller][GM17] +* [`groth16`](groth16): Rust crate that implements the zkSNARK of [Groth][Groth16] + In addition, there is a [`bench-utils`](bench-utils) crate which contains infrastructure for benchmarking. This crate includes macros for timing code segments and is used for profiling the building blocks of ZEXE. [GM17]: https://ia.cr/2017/540 +[Groth16]: https://ia.cr/2016/260 + ## Build guide