You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Constructing individual proofs for each individual GS equation is tedious when the proof system is easily designed to prove about the satisfiability of multiple equations simultaneously
Implement the appending of committed variables
Provide helper functions for composing existing Groth-Sahai proofs together; refactor to Vec<EquProof> and naïvely compose (with potential duplication of variables) by adding zero elements corresponding to other equations' variables
Implement prove and verify functions that are defined over the entire Statement (i.e. Vec of Equation)
Test that individually proving about each equation and proving about them all together give equivalent proofs (not necessarily identical Equation constructors)
The text was updated successfully, but these errors were encountered:
Constructing individual proofs for each individual GS equation is tedious when the proof system is easily designed to prove about the satisfiability of multiple equations simultaneously
Vec<EquProof>
and naïvely compose (with potential duplication of variables) by adding zero elements corresponding to other equations' variablesprove
andverify
functions that are defined over the entireStatement
(i.e.Vec
ofEquation
)Equation
constructors)The text was updated successfully, but these errors were encountered: