Generalized inner product argument

This is a summary of [BMMTV19]. In the previous post, we introduced the inner product argument which recursively reduces the size of the witness. In [BMMTV19], they extend this argument to general inner products with some assumptions, which is called GIPA.


Generalized inner product argument (GIPA)

Let's define the desired properties of our inner products and commitment scheme. Let K be a commitment key space, M be a message space, and C be a commitment space. We need all the spaces K,M,C to be abelian groups, and CM( ;):K×MC to be a bilinear commitment scheme. For example, in the previous post, K=Gn,M=Fpn,C=G and CM(g;a)=aigi. Next, we define an inner product :M1×M2M3 on abelian message spaces. We abuse notation for Cartesian products, that is, :M1n×M2nM3 is defined by (ai)(bi)=aibi. For example, in the previous post, M1=M2=Fp and is a field multiplication.

Like the inner product argument, we want to reduce the size of messages for each round. Suppose we have a series of commitment schemes. That is, for each n=2j, we have

CMn:(K1n×K2n×K)×(M1n×M2n×M3)Cn

Here, K1,K2,K3,M1,M2,M3 are groups of order p. The collapse function is a series of functions Collapsen:C2nCn such that

Collapsen(CM2n(k1||k1,k2||k2,k3;m1||m1,m2||m2,m3))=CMn(k1+k1,k2+k2,k3;m1,m2,m3)

Given such a series of commitments and a collapse function, the goal of GIPA is to prove that

C=CMn(k1,k2,k3;a,b,ab).

Here, aM1n and bM2n are witnesses the prover has, and they are committed using the commitment keys k1,k2,k3 by C. The process is similar to the previous post. First, the prover sends a new commitment

CL=CMn(k1,k2,k3;l(a)||0,0||r(b),l(a)r(b))

CR=CMn(k1,k2,k3;0||r(a),l(b)||0,r(a)l(b))

Then, the verifier makes a random challenge xFp×. With the new commitment keys and new witnesses

k1=r(k1)+x1l(k1),

k2=r(k2)+xl(k1),

a=r(a)+xl(a),

b=r(b)+x1l(a),

the prover now wants to prove that

CMn2(k1,k2,k3;a,b,ab)=Collapsen(xCL+C+x1CR)

The size of the witnesses becomes half, and one can show that the correctness of the first commitment implies the last equation using bilinearity of commitment and collapse property. Also, the converse is true for high probability. Continuing this process, we can reduce the size of witnesses to n=1, and then send them to the verifier.


Reduce verifier time using KZG

A problem of GIPA is that the verifier should compute new commitment keys k1,k2 for each round. Some special commitment scheme allows removing these calculations. Instead of computing each commitment key, the verifier believes the prover is using valid commitment keys for each round. Then, the verifier checks all the commitment keys are valid simultaneously using the KZG commitment scheme. The special property is that the first commitment key k1 is of the form

g=(g,gα,,gαn1)G1n

In order to prove each commitment key is valid, it's enough to prove that the final commitment key v equals to

gj=0logn(1+xjαj+1)

where xj is the (lognj)th challenge in GIPA. Similarly, this can be applied to k2 with xj1 instead of xj. To prove this, we can use the KZG commitment scheme. Let

f(X)=j=0logn(1+xjαj+1).

Using KZG, the prover can show that gf(α)=v efficiently.


Application

As an application, I will introduce the TIPP protocol. Let G1=g,G2=h,GT be cyclic groups of order p, and e:G1×G2GT be a non-degenerate bilinear pairing. You may think of these as paring-friendly curve groups for example. Let gα=(g,gα,,gαn1)G1n be a trusted setup, and hβG2n similarly. The prover has witnesses AG1n and BG2n, and commits them using T=A,hβ and U=gα,B. After commitment, the verifier chooses a random challenge rF. The prover wants to prove that (AB)r=i=0m1e(Ai,Bi)ri equals known Z and the commitments are valid.

Note that the commitment scheme is bilinear, and the inner product is defined by pairing e. For each round, the commitment belongs to the same GT, so we can choose the collapse function as identity. Now, the prover and verifier can use GIPA with two commitment keys and two witnesses

(g,g(r1α,,gr(n1)αn1),(h,hβ,,hβn1)

(A0,A1r,,An1rn1),(B0,B1,,Bn1)

Since the first commitment keys are the desired form, the verifier needs not to compute each commitment key but needs to check final commitment keys are valid using KZG.

댓글