Publicly Verifiable Secret Sharing

In cryptography, a secret sharing scheme is publicly verifiable (PVSS) if it is a verifiable secret sharing scheme and if any party involved can verify the validity of the shares distributed by the dealer.

In verifiable secret sharing (VSS) the object is to resist malicious players, such as

(i) a dealer sending incorrect shares to some or all of the participants, and
(ii) participants submitting incorrect shares during the reconstruction protocol,cf. [CGMA85].
In publicly verifiable secret sharing (PVSS), as introduced by Stadler [Sta96], it is an explicit goal that not just the participants can verify their

own shares, but that anybody can verify that the participants received correct shares.

Hence, it is explicitly required that i can be verified publicly.

Berry Schoenmakers. A Simple Publicly Verifiable Secret Sharing Scheme and its Application to Electronic Voting .

The method introduced here according to the paper by Chunming Tang, Dingyi Pei, Zhuo Liu, and Yong He is non-interactive and maintains this property throughout the protocol.

Initialization

The PVSS scheme dictates an initialization process in which:

  1. All system parameters are generated.
  2. Each participant must have a registered public key.

Excluding the initialization process, the PVSS consists of two phases:

Distribution

1.Distribution of secret s shares is performed by the dealer D, which does the following:

(note: \mathrm{proof}_{D} guarantees that the reconstruction protocol will result in the same s.

2. Verification of the shares:

Reconstruction

1. Decryption of the shares:

(note: fault-tolerance can be allowed here: it's not required that all participants succeed in decrypting E_{i}(s_{i}) as long as a qualified set of participants are successful to decrypt s_{i}).

2. Pooling the shares:

Chaums and Pedersen Scheme

A proposed protocol proving: \log_{_{g1}}h_{1} = \log_{_{g2}}h_{2} :

  1. The prover chooses a random r\in  \boldsymbol{\Zeta}_{q^*}
  2. The verifier send a random challenge c \in _{R}\boldsymbol{\Zeta}_{q}
  3. The prover responds with s = r - c x(\mathrm{mod}\,q)
  4. The verifier checks \alpha_1 = g_{1}^s h_{1}^c and \alpha_2 = g_{2}^s h_{2}^c

Denote this protocol as: \mathrm{dleq}(g_1, h_1,g_2,h_2)
A generalization of \mathrm{dleq}(g_1, h_1,g_2,h_2) is denoted as: \text{dleq}(X, Y, g_1, h_1,g_2,h_2) where as: X = g_{1}^{x_1}g_{2}^{x_2} and Y = h_{1}^{x_1}h_{2}^{x_2}:

  1. The prover chooses a random  r_1,r_2 \in Z_{q}^* and sends t_1 = g_{1}^{r_1} g_{2}^{r_2} and t_2 = h_{1}^{r_1} h_{2}^{r_2}
  2. The verifier send a random challenge c \in _{R}\boldsymbol{\Zeta}_{q} .
  3. The prover responds with s_1 = r_1 - cx_1 (\mathrm{mod}\,q) , s_2 = r_2 - cx_2 (\mathrm{mod}\,q) .
  4. The verifier checks t_1 = X^c g_{1}^{s_1}g_{2}^{s_2} and t_2 = Y^c h_{1}^{s_1}h_{2}^{s_2}

The Chaums and Pedersen method is an interactive method and needs some modification to be used in a non-interactive way: Replacing the randomly chosen c by a 'secure hash' function with m as input value.

See also

References

This article is issued from Wikipedia - version of the Wednesday, July 17, 2013. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.