Recursive inner product argument

This article is a summary of [BCCGP16].


Consider a situation prover wants to prove he knows two vectors (in Fpn) such that the inner product is given zFp. The simplest way to prove this is to send each vector to a verifier, but this is too long proof and also not zero-knowledge. In the paper, the protocol recursively reduces the length of witness to obtain O(logn) proof.


Let's describe the situation formally. Information only the prover knows is red.

G : additive cyclic group of order prime p with DLP security.

gi,hiG : fixed generators for 1in.

ai,bi Fp : witness for 1in.

The prover commits the witness using A,BG and zFp such that

A=i=1naigi,    B=i=1nbihi,    z=i=1naibi.

and wants to prove this.


Protocol

Now, the length of the witness is 2n. We want to reduce this size to 2nm in the first round, and to 2nm2 next round, and so on.


For the first round choose m which divides n, and partite gi and ai into m blocks. Namely,

g1=(g1,g2,,gnm)g2=(gnm+1,gnm+2,,g2nm)gm=(g(m1)nm+1,g(m1)nm+2,,gn)

Similarly, define ai for 1im. The prover then commits new elements

Ak=ai+k gi

for 1mkm1. Here, the vector multiplication is like inner product, for example, a1g1=a1g1+a2g2++a2nmg2nm. I omitted the start and end of the sum, which is as many indices as possible. Similarly, define hi,bi and commit Bk and zk, where zk is defined by

zk=aibi+k


Next, the verifier makes a random challenge xFp×. Both prover and verifier compute a reduced statement for the next round using committed Ak,Bk,zk

(g1,g2,,gnm)=i=1mxigi(h1,h2,,hnm)=i=1mxihiA=k=1mm1xkAkB=k=1mm1xkBkz=k=1mm1zkxk

And, the prover computes new witness

(a1,a2,,anm)=i=1mxiai(b1,b2,,bnm)=i=1mxibi

Direct computation shows that the original proof implies

A=i=1naigi,    B=i=1nbihi,    z=i=1naibi.

and the length of witness reduces to 2nm.


By choosing proper m and random challenge each round, we repeat this process until the length becomes sufficiently small.


Efficiency

Suppose n is a power of 2 and we choose the same m for each round. For the prover, the main cost is from computing Ak, Bk, and zk, which requires at most 6nm2(m1)logm group exponentiation and nm2m+1 field multiplication. The verifier needs to compute new statements each round, which requires at most 2nm(m1)logm group exponentiation.

댓글