ZKP and MPC 3

Lec02 Zero-Knowledge Proof under Composition

2.3 Sequential Composition

V : should be viewed as a black box , input (input,randomness,messages) , output response

If guess wrong at mi , we can rewind V to the time when it receives mi , using the same input , randomness , first i1 messages

  1. Def [ Zero-Knowledge Proof with Auxiliary Input ] :

    (P,V) is an interactive zero-knowledge proof with auxiliary input for L if

    • V is an efficient algorithm ( poly-time )

    • Completeness : xL,y,z{0,1} Pr{P(y),V(z)(x)=1}=1

    • Soundness with error ϵ : xL,y,z{0,1} P,Pr{P(y),V(z)(x)=1}<ϵ

    • Zero-Knowledge : V in P.P.T. , expected poly-time algorithm M , xL,y,z{0,1} , M(x,z)ViewV(z)P(y)(x)

    y is indeed redundant since P is not computationally bounded

    Alternating Form of Zero-Knowledge : V,M,xL,y,z{0,1} M(x,z)P(y),V(z)(x)

  2. Lemma [ Composition Lemma ] :

    (P,V) : zero-knowledge proof with auxiliary input for L , q is a polynomial of κ

    (Pq,Vq) : An IP runs (P,V) q times

    Claim : (Pq,Vq) are still zero-knowledge .

  3. Proof of Composition Lemma

    Only Proof for perfect zero-knowledge

    Using Alternating Form of Zero-Knowledge

    Construction

    1. M inputs (x,z) , st0= .

    2. For i=1,2,q :

      1. Construct Vi : Vi(x,sti1,z)={V(x,z)i=1V(sti1)i2 , output state of V as sti

        Note : for i2 , x,z are contained in sti1 , so we do not need to input them.

      2. By zero-knowledge , Mi(x,sti1|z) that can simulate the output of Vi.

      3. M runs Mi(x,sti1|z) to obtain sti.

    3. M invokes V with stq to obtain final output.

    Proof of M(x,z)P(y),V(z)(x)

    1. Hyb0 : Real Execution P(y),V(z)(x)

    2. Hyb1 :

      1. Run P(y) and V(z) until the last phase .
      2. Record the state of V as stq1 .
      3. Invoke Mq(x,stq1|z) to obtain stq .
      4. Invoke V with stq to obtain final output .

      Proof of Hyb0Hyb1 :

      Fix state stq1 . For Hyb0 , its distribution is the same as

      1. Run Vq(x,stq1,z) to obtain stq
      2. Run V with stq to obtain final output

      By zk , given x,stq1,z , Vq(x,stq1,z)Mq(x,stq1|z).

      Therefore , Hyb0Hyb1.

    3. Hybi : Change to M after the first qi phases

      Hybi1 : using Vqi+1 , Hybi : using Mqi+1

      Therefore , Hybi1Hybi

    4. Hybq+1 : The execution of M .

Lec03 Commitment Scheme , zk-proof for general NP

3.0 Important

In the next lecture , we re-defined commitment in a more simple way .

3.1 Commitment

Intuition :

Binding : make some choice , then won't change it . (change will be rejected)

Hiding : like "safe" , until open it , not knowing the choice . (uniform distribution)

  1. Def [ Commitment ] : Three P.P.T. algorithms

    • Gen(1κ)pp ( public parameter )
    • Commitpp(m,r)(c,aux)
    • Verifypp(m,c,aux){Accept,Reject}

    Satisfying properties :

    • Hiding : m,m , the following distributions are identical/statistically indistinguishable/computationally indistinguishable

    Dist{ppGen(1κ),(c,aux)Commitpp(m,r):(pp,c)}

    Dist{ppGen(1κ),(c,aux)Commitpp(m,r):(pp,c)}

    • Binding : mm , ppGen(1κ) ,

      Perfect Binding : {c|(c,aux)Commitpp(m,r)}{c|(c,aux)Commitpp(m,r)}= Computationally Binding : P in P.P.T.

Pr{ppGen(1κ),(c,m,aux,m,aux)P(pp):Verifypp(c,m,aux)=Verify(c,m,aux)=Accept}<ϵ

  1. Open Commitment ( implement Verifypp )

    One general way : let aux=r

    Verify checks whether (c,aux)=Commitpp(m,r=aux)

    There exists faster Verify for some specific problems.

  2. Note : hiding and binding are incompatible

    hiding : c can from different m

    binding : c cannot from different m

3.2 Perfect Binding & Computationally Hiding Commitment

  1. DDH assumption

    G=g , |g|=p , pκ , The following distributions are computationally indistinguishable Dist{a,bZp:(g,ga,gb,gab)}

    Dist{a,b,cZp:(g,ga,gb,gc)}

  2. Construction

    Suppose that mG Gen(1κ)(G,p,g)

    Commitpp(m,(a,b))c=(ga,gb,mgab),aux=(a,b)

    Verifypp(c,m,aux):check c1=gac2=gbc3=gab

  3. Perfect Binding

    For c=(c1,c2,c3) ,   unique a,b , s.t. c1=ga,c2=gb .

    Therefore , m=c3gab , which is uniquely determined

  4. Computationally Hiding [Prove by Hybrid Proof]

    We want to prove that {a,bZp:(ga,gb,mgab)}{a,bZp:(ga,gb,mgab)}

    1. Hyb0 : a,bZp:(ga,gb,mgab)
    2. Hyb1 : a,b,cZp:(ga,gb,mgc)
    3. Hyb2 : a,b,cZp:(ga,gb,mgc)\
    4. Hyb3 : a,b,cZp:(ga,gb,mgab)

    Hyb0Hyb1Hyb2Hyb3

3.3 Computationally Binding & Perfect Hiding Commitment

  1. Discrete Log Assumption

    G=g , |g|=p . A in P.P.T. , Pr{aZp:A(G,p,g,ga)=a}<ϵ

  2. Construction

    Suppose that mZp Gen(1κ)(G,p,g,h=ga) aZp , and we need to "forget" a . Commitpp(m,r):rZp,c=grhm,aux=r

    Verifypp(c,m,aux): check c=gauxhm

  3. Perfect Hiding

    c=grhm , which is the same distribution as gr , since r is random .

  4. Computationally Binding

    Suppose that we have P.P.T. A that A(G,p,g,h)(c,m,aux,m,aux) , s.t. c=gauxhm=gauxhm Therefore : aux+am=aux+am Therefore : a=auxauxmm which contradicts with Discrete Log assumption

  5. How to generate h=ga

    • Generate by Sender ? NO

      knows a , then c=gr+am . Sender can choose proper r to reconstruct m .

    • Generate by Receiver ? YES

      knows a not affect hiding

    perfect binding + computationally hiding : Sender runs Gen

    computationally binding + perfect hiding : Receiver runs Gen

3.4 General NP Problem

  1. NP , NPC

    1. Def [ NP ] : LNP if   poly-time algorithm D ,

      xLw , D(x,w)=1

      w is called the proof .

    2. Def [ NP-Complete ] : LNPComplete if LNP ,   poly-time algorithm Q , s.t.

      Q(x,w)=(x,w) , and xLxL .

      i.e. all NP problems can be poly-reducible to NP-Complete Problem

  2. Graph Hamiltonicity

    1. Def [ Hamiltonian ] : A graph G is Hamiltonian , if there exists a cycle visiting each node exactly once.

    2. Construct zk-proof for Graph Hamiltonicity

      1. Like GI :

        Step 1 : send G~ , where GG~

        Step 2 : give a cycle of G~ to prove its Hamiltonian

        Traditional ways : we cannot realize both

      2. Protocol with commitment

      Commitment of a graph G : i,j[n] , (ci,j,auxi,j){Commitpp(1,r)(i,j)ECommitpp(0,r)(i,j)E

      Prover Verifier
      πSn , G~:=π(G)
      Commit G~ : ---ci,j-->
      <--b--- b{0,1}
      If b=0 ---π,mi,j,auxi,j--> Checks G~=π(G)
      If b=1 ---cycle for G~ , mi,j,auxi,j in cycle---> Checks cycle and edges existence