I have explained What is the VOLE previously, and this time I will explain the Quicksilver protocol, which is an efficient VOLE-based ZK.

This blog will describe the Quicksilver configuration, known as an efficient VOLE-based ZK.

Pros/Cons

Not limited to Quicksilver, VOLE-based ZKs have the following characteristics

Pros This is due to the benefit of efficient Commitment scheme by linear arithmetic and additive quasi-isomorphism.

  • Fast proving
  • Memory efficient
  • Without trusted setup

Cons Proof size increases linearly as vector size increases in proportion to Constraint.

  • Linear proof size
  • Interactive
  • Designated verifier
  • Communication cost

There are also communication challenges for OT-based protocols. Fortunately, NIZK has been achieved in VOLE in the Head and is publicly verifiable. Communication cost can be reduced to O(logn) by adopting Softspoken OT. In other words, if we do not pay attention to the issue of proof size, we can say that it is at a practical stage.

This characteristic has attracted attention in the context of Client-side proving, zkTLS, and others. Personally, I think it is also compatible with zkVM.

Commitment scheme

The VOLE Commitment scheme not only satisfies Hiding and Binding, but also has Additive Homomorphism. This makes it possible to realize a lightweight Commitment scheme and efficiently generate Proofs even for large circuits.

Hiding

  • As long as Prover keeps secret, Verifier cannot know .

Binding

  • As long as the Verifier keeps secret about the , the Prover cannot construct using an illegal .

Additive Homomorphism

  • Two Commitments can be added without having to calculate them separately.
  • This property can be used in linear operations such as scalar products

Define . Then, the following equation holds.

Additive homomorphism can also be used for scalar products.

The Quicksilver Protocol

Quicksilver divides the VOLE correlations into a Preprocessing phase in which the VOLE correlations are calculated in advance, and an Online phase in which the VOLE correlations are actually Proofed & Verified.

alt text

Preprocessing phase

Prover and Verifier cooperate to generate the VOLE Correlation. As mentioned earlier, since and are secret information, it is necessary to generate a VOLE Correlation while keeping each other’s information hidden. Therefore, information is exchanged using Oblivious Transfer. Here, the Sender is the Verifier and the Receiver is the Prover.

Prover generates a bit string consisting of 0/1 and sends it to Verifier. Verifier sends back and according to the bit sequence.

By repeating this according to the length of vector, prover can generate . Strictly speaking, Softspoken OT based on GGM Tree is used.

Proving phase

Here, wire value: at each gate of Circuit is committed and opened using the VOLE Correlation obtained in the preprocessing phase. 1.

Prover sends to Verifier and commits. 2. Verifier calculates \vec{m},\vec{w}$ to Verifier and makes Open commitment. 4. Verifier calculates VOLE Correlation and verifies the proof.

For example, when evaluating the following OR gate, i.e., when you want to prove that . Verifier verifies that the following OLE holds,

Furthermore, from Additive Homomorphism, we verify that

Additive Homomorphism can be applied to linear operations such as scalar multiplication, but a challenge arises when trying to evaluate multiplication (AND gate). However, this problem arises when trying to evaluate multiplication (AND gate), since the multiplication of two linear polynomials simply becomes a quadratic polynomial, which does not satisfy the VOLE Correlation.

What would be the best way to solve this? If possible, we would like to use Additive Homomorphism. This can be solved by extending VOLE to VOPE (Vector Oblivious Polynomial Evaluation). Prover computes the following using local values.

Similarly, the verifier computes .

This calculation is composed by relying on Beaver Triple Multiplication. Prover then sends to Verifier. Verifier then verifies that is valid from the following calculation.

If holds, then the term disappears and can be verified since .

Strictly speaking, further elaboration is necessary to satisfy the zero-knowledge property, but this will be omitted.

Refference