Hope you enjoyed the Journey of Zero Knowledge Proof. Before, enjoying this blog it is recommended for user to study zero knowledge Proof (
https://akshitaggarwaliiit.blogspot.com/2022/03/zero-knowledge-proof-of-knowledge.html) and then study the sigma (Σ) Protocol.
Sigma Protocol is basically a way to obtain efficient Zero Knowledge.
Sigma Protocol Template :
. Common Input : P and V both have x.
. Private Input : P has w such that (x, w) ∈ R.
. Three Round Protocol :
. P sends a message a.
. V sends a random t-bit string e.
. P sends a reply z.
. V accepts based solely on (x, a, e, z).
. Completeness : As usual in Zero Knowledge (ZK).
. Special Soundness : There exist an efficient extractor A that given any x and pair of transcripts (a, e, z), (a, e', z') with e ≠ e' outputs w such that (x, w) ∈ R.
. Special Honest-Verifier ZK : There exists an efficient simulator S that given any x and e outputs an accepting transcripts (a, e, z) which is distributed exactly like a real execution where V sends e.
Note: Symbol Specification. P : Prover, V : Verifier, w : witness, x : statement/query, e :
String, R : Relation.
|
Properties of Sigma Protocol :
. Any Σ - Protocol is an interactive proof with soundness error 2-t
. Properties if sigma protocol are invariant under parallel composition.
. Any sigma protocol is a proof of knowledge with error 2-t
. The difference between the probability that P* convinces V and the probability that an extractor K obtains a witness is at most 2-t
. Proof needs some work.
Now we just seen the Basic understanding of Sigma protocol but I believe we should need some example for better clarity.
So It is recommended for user to firstly think about the different scenario and then go to the the below text. 😊
Here I am going to take the example of Schnorr's discrete logarithmic, Hope you have basic understanding regarding Schnorr's algorithm if not then don't worry you will easily understand with the help of below example.
An
Example – Schnorr’s Protocol for Discrete Logarithmic:
. Let G be a group of order q, with generator g.
. P and V have input h ∈
G. P has w such that gw = h.
. P proves that to V that it knows DLOGg(h).
. P chooses a random r and sends a =
gr to V.
. V sends P a random e ∈ {0, 1}t
. P sends z = r + ew % q to V.
. V checks that gz = ahe.
. Correctness: gz = g(r+ew) = gr(gw)e
= ahe.
. Proof of Knowledge:
. Assume P can answer two queries e
and e’ for some a.
. Then, it holds that gz
= ahe, gz’ = ahe’.
. Dividing the two equation gives
g(z-z’) = h(e-e’).
. Therefore, h = g(z-z’) / (e-e’).
. That is: DLOGg(h) =
(z-z’) / (e-e’).
. Conclusion:
. If P can answer with probability
greater than 1/2t, then it must know the discrete log.
|
Hope you enjoyed the basic information regarding Sigma Protocol. It is recommended to think about some other test cases .
Hope you enjoyed the below task : (Think and solve by yourself).
Task 1 : Apply Sigma Protocol on K out of n Secret Sharing.
If you have any doubt fill the comment section. 😉
Comments
Post a Comment